[CMAKE] Turn ENABLE_ROSAPPS, ENABLE_ROSTESTS & ENABLE_WALLPAPERS into options

Enabling UI tools to toggle them easily
This commit is contained in:
Jérôme Gardou 2021-07-05 14:49:26 +02:00
parent c238b554b1
commit 7448f4b807
1 changed files with 4 additions and 0 deletions

View File

@ -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()