https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7448f4b807757998bcb9f7...
commit 7448f4b807757998bcb9f7f5111bcef46fa32de3 Author: Jérôme Gardou jerome.gardou@reactos.org AuthorDate: Mon Jul 5 14:49:26 2021 +0200 Commit: Jérôme Gardou jerome.gardou@reactos.org CommitDate: Mon Jul 5 15:24:46 2021 +0200
[CMAKE] Turn ENABLE_ROSAPPS, ENABLE_ROSTESTS & ENABLE_WALLPAPERS into options
Enabling UI tools to toggle them easily --- modules/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+)
diff --git a/modules/CMakeLists.txt b/modules/CMakeLists.txt index 4c68bfb1e5d..ca002635b33 100644 --- a/modules/CMakeLists.txt +++ b/modules/CMakeLists.txt @@ -1,4 +1,8 @@
+option(ENABLE_ROSAPPS "Enable building the ReactOS extra applications" OFF) +option(ENABLE_ROSTESTS "Enable building the ReactOS test suite" OFF) +option(ENABLE_WALLPAPERS "Integrate wallpapers into the built ISOs" OFF) + if(ENABLE_ROSAPPS) add_subdirectory(rosapps) endif()