You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cmake/Tests/RunCMake/UnityBuild/unitybuild_runtest.cmake

10 lines
240 B

project(unitybuild_runtest C)
set(CMAKE_UNITY_BUILD ON) # This tests that the variable works in addition to the property
add_library(lib main.c func.c)
add_executable(main main.c func.c)
enable_testing()
add_test(NAME main COMMAND main)