We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 340bb06 commit 64829daCopy full SHA for 64829da
CMakeLists.txt
@@ -192,8 +192,11 @@ find_program(SED_EXECUTABLE sed)
192
find_program(GIT_EXECUTABLE git)
193
194
# ---------- CORE FEATURE SWITCHES
195
-
196
-option(ENABLE_SCE "enables Script Check Engine - an alternative checking engine that lets you use executables instead of OVAL for checks" ON)
+if(WIN32)
+ option(ENABLE_SCE "enables Script Check Engine - an alternative checking engine that lets you use executables instead of OVAL for checks" OFF)
197
+else()
198
+ option(ENABLE_SCE "enables Script Check Engine - an alternative checking engine that lets you use executables instead of OVAL for checks" ON)
199
+endif()
200
201
# ---------- OVAL FEATURE SWITCHES
202
0 commit comments