blob: e6046e635b7524869596ebb168577dacf9445c78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
project(unitybuild_c_relocatable_path C)
set(srcs "")
foreach(s RANGE 1 3)
set(src "${CMAKE_CURRENT_BINARY_DIR}/s${s}.c")
file(WRITE "${src}" "int s${s}(void) { return 0; }\n")
list(APPEND srcs "${src}")
endforeach()
add_library(tgt SHARED ${srcs})
set_target_properties(tgt PROPERTIES UNITY_BUILD ON
UNITY_BUILD_RELOCATABLE TRUE
UNITY_BUILD_UNIQUE_ID "anon")
|