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_object_library.c...

14 lines
319 B

project(unitybuild_object_library C)
set(CMAKE_UNITY_BUILD ON) # This tests that the variable works in addition to the property
add_library(lib OBJECT func.c)
add_library(other-lib STATIC func.c)
add_executable(main main.c)
target_link_libraries(main PRIVATE lib)
enable_testing()
add_test(NAME main COMMAND main)