From 7448f4b807757998bcb9f7f5111bcef46fa32de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Gardou?= Date: Mon, 5 Jul 2021 14:49:26 +0200 Subject: [PATCH] [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()