diff options
author | Kargatum <dowlandtop@yandex.com> | 2021-06-23 04:19:02 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-22 23:19:02 +0200 |
commit | 5991b2769acc2f7c1959f1850a36a22c968bb45c (patch) | |
tree | 86ffae3a32cf14f00784a8a0c458d1644b438e4b /CMakeLists.txt | |
parent | 20a67cbfcf78e830fce746ee1a7ea16db2f4ca80 (diff) |
feat(Core/Scripts): split the huge scriptloader into smaller pieces (#5346)
* feat(Core/Scripts): split the huge scriptloader into smaller pieces
* AddSC_swamp_of_sorrows del
* 1
* add mod info
* 1
* 039f0e0faa081352d19f34b6f0abaa4e74414988
Co-authored-by: Kitzunu <24550914+Kitzunu@users.noreply.github.com>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 2dbcfddd5f..8dd3d68f01 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -40,6 +40,7 @@ list(APPEND CMAKE_MODULE_PATH include(CheckCXXSourceRuns) include(CheckIncludeFiles) include(ConfigureScripts) +include(ConfigureModules) # some utils for cmake include(deps/acore/cmake-utils/utils.cmake) @@ -70,7 +71,6 @@ FOREACH(subdir ${sub_DIRS}) STRING(REGEX REPLACE "^${CMAKE_SOURCE_DIR}/" "" subdir_rel ${subdir}) if(EXISTS "${subdir}/CMakeLists.txt") - message("Loading module: ${subdir_rel}") add_subdirectory("${subdir_rel}") endif() ENDFOREACH() |