Format to lower-case

This commit is contained in:
Andres6936 2021-12-26 11:44:19 -05:00
parent 3e90985c36
commit a7ba7f7fd5

View File

@ -1,6 +1,6 @@
# vim: et ts=4 sts=4 sw=4 tw=0 # vim: et ts=4 sts=4 sw=4 tw=0
ADD_EXECUTABLE(jsoncpp_test add_executable(jsoncpp_test
jsontest.cpp jsontest.cpp
jsontest.h jsontest.h
fuzz.cpp fuzz.cpp
@ -8,22 +8,22 @@ ADD_EXECUTABLE(jsoncpp_test
main.cpp main.cpp
) )
TARGET_LINK_LIBRARIES(jsoncpp_test PRIVATE jsoncpp::framework) target_link_libraries(jsoncpp_test PRIVATE jsoncpp::framework)
# another way to solve issue #90 # another way to solve issue #90
#set_target_properties(jsoncpp_test PROPERTIES COMPILE_FLAGS -ffloat-store) #set_target_properties(jsoncpp_test PROPERTIES COMPILE_FLAGS -ffloat-store)
## Create tests for dashboard submission, allows easy review of CI results https://my.cdash.org/index.php?project=jsoncpp ## Create tests for dashboard submission, allows easy review of CI results https://my.cdash.org/index.php?project=jsoncpp
ADD_TEST(NAME jsoncpp_test add_test(NAME jsoncpp_test
COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:jsoncpp_test> COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:jsoncpp_test>
) )
SET_TARGET_PROPERTIES(jsoncpp_test PROPERTIES OUTPUT_NAME jsoncpp_test) set_target_properties(jsoncpp_test PROPERTIES OUTPUT_NAME jsoncpp_test)
# Run unit tests in post-build # Run unit tests in post-build
# (default cmake workflow hides away the test result into a file, resulting in poor dev workflow?!?) # (default cmake workflow hides away the test result into a file, resulting in poor dev workflow?!?)
IF (JSONCPP_WITH_POST_BUILD_UNITTEST) if (JSONCPP_WITH_POST_BUILD_UNITTEST)
ADD_CUSTOM_COMMAND(TARGET jsoncpp_test add_custom_command(TARGET jsoncpp_test
POST_BUILD POST_BUILD
COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:jsoncpp_test> COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $<TARGET_FILE:jsoncpp_test>
) )
ENDIF () endif ()