summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/UnityBuild/unitybuild_object_library.cmake
blob: b4005172d074a42892d705fc189f24dd4c3ba804 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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)