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 3955f59 commit 937b028Copy full SHA for 937b028
CMakeLists.txt
@@ -5,7 +5,7 @@ project(LuaCodeStyle)
5
set(CMAKE_CXX_STANDARD 20)
6
7
option(BuildAsLuaLib "Build for lua dll" OFF)
8
-option(BuildCodeFormat "Build CodeFormat" OFF)
+option(BuildCodeFormat "Build CodeFormat" ON)
9
option(BuildCodeFormatServer "Build CodeFormatServer" ON)
10
option(EnableTest "Test project" ON)
11
@@ -37,9 +37,10 @@ if(BuildCodeFormatServer)
37
add_subdirectory(CodeFormatServer)
38
endif()
39
40
-add_subdirectory(Test2)
41
if(EnableTest)
42
enable_testing()
43
add_subdirectory(3rd/googletest-1.12.1)
44
add_subdirectory(Test)
+ # for feature develop simple test
45
+ add_subdirectory(Test2)
46
0 commit comments