summaryrefslogtreecommitdiffhomepage
path: root/external
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-12 01:20:44 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-12 01:20:44 +0100
commitd056a387b0cdf977f4946903bcd311ceb07788a9 (patch)
tree61704a5163ca267d236cb23de75eb3836db32519 /external
parent4f318659751519bffd6bdbde4418814ce26b9c69 (diff)
external: run userconfig last
Diffstat (limited to 'external')
-rw-r--r--external/CMakeLists.txt11
1 files changed, 5 insertions, 6 deletions
diff --git a/external/CMakeLists.txt b/external/CMakeLists.txt
index 8ba31f31..b9147d04 100644
--- a/external/CMakeLists.txt
+++ b/external/CMakeLists.txt
@@ -190,8 +190,6 @@ if(FLOORMAT_SUBMODULE-DEPENDENCIES)
endif()
endif()
-fm_run_hook(fm-userconfig-external-pre)
-
set(fm-quiet-message 0)
function(message)
@@ -241,6 +239,8 @@ if(FLOORMAT_SUBMODULE-DEPENDENCIES)
fm_add_luajit()
endfunction()
+ fm_run_hook(fm-userconfig-external-pre)
+
fm_add_libs()
endif()
@@ -248,10 +248,9 @@ if(FLOORMAT_SUBMODULE-DEPENDENCIES)
if(MSVC)
target_compile_options(CorradeTestSuiteObjects PRIVATE -EHsc)
endif()
+ fm_run_hook(fm-userconfig-external)
endif()
-fm_run_hook(fm-userconfig-external)
-
set(fm-quiet-message 1)
find_package(SDL2 QUIET REQUIRED)
find_package(Corrade QUIET REQUIRED)
@@ -262,7 +261,7 @@ find_package(MagnumIntegration QUIET REQUIRED ImGui)
if(NOT FLOORMAT_SUBMODULE-DEPENDENCIES)
find_package(fmt QUIET REQUIRED)
+else()
+ fm_run_hook(fm-userconfig-external-post)
endif()
set(fm-quiet-message 0)
-
-fm_run_hook(fm-userconfig-external-post)