Added Corrade as a dependency and also Fetchscript

This commit is contained in:
2026-03-06 16:33:30 +02:00
parent 58c69e4aa5
commit ce9ea6752d
2 changed files with 82 additions and 7 deletions

16
external/Corrade/CMakeLists.txt vendored Normal file
View File

@@ -0,0 +1,16 @@
include(FetchContent)
# Building options
set(CORRADE_BUILD_STATIC ON)
# Feature options
set(CORRADE_WITH_MAIN ON)
set(CORRADE_WITH_UTILITY ON)
set(CORRADE_WITH_PLUGINMANAGER ON)
set(CORRADE_WITH_INTERCONNECT OFF)
set(CORRADE_WITH_TESTSUITE OFF)
if(NOT CMAKE_CROSSCOMPILING)
set(CORRADE_WITH_RC ON)
endif()
FetchContent_MakeAvailable(Corrade)