File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -167,13 +167,13 @@ else()
167167 "-Werror" )
168168endif ()
169169
170- target_compile_options (runcpp2 PRIVATE ${STANDARD_COMPILE_FLAGS} )
170+ target_compile_options (runcpp2 PRIVATE " ${STANDARD_COMPILE_FLAGS} " )
171171
172172# Define the version macro
173173target_compile_definitions (runcpp2 PUBLIC RUNCPP2_VERSION="${RUNCPP2_PROJECT_VERSION} " )
174174
175175add_executable (runcpp2_main "${CMAKE_CURRENT_LIST_DIR} /Src/runcpp2/main.cpp" )
176- target_compile_options (runcpp2_main PRIVATE ${STANDARD_COMPILE_FLAGS} )
176+ target_compile_options (runcpp2_main PRIVATE " ${STANDARD_COMPILE_FLAGS} " )
177177target_link_libraries (runcpp2_main PRIVATE runcpp2 ssLogger ghc_filesystem)
178178set_target_properties (runcpp2_main PROPERTIES OUTPUT_NAME "runcpp2" )
179179
Original file line number Diff line number Diff line change @@ -12,9 +12,10 @@ target_compile_definitions(BuildsManagerTest PRIVATE INTERNAL_RUNCPP2_UNIT_TESTS
1212
1313function (create_data_test TEST_NAME)
1414 add_executable ("${TEST_NAME} " "${CMAKE_CURRENT_LIST_DIR} /Data/${TEST_NAME} .cpp" )
15+ target_compile_options ("${TEST_NAME} " PRIVATE "${STANDARD_COMPILE_FLAGS} " )
1516 target_compile_definitions ("${TEST_NAME} " PRIVATE INTERNAL_RUNCPP2_UNIT_TESTS=1)
1617 target_link_libraries ("${TEST_NAME} " PUBLIC runcpp2 ssTest)
17-
18+
1819endfunction ()
1920
2021create_data_test(FilePropertiesTest)
You can’t perform that action at this time.
0 commit comments