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.
29 lines
873 B
29 lines
873 B
2 months ago
|
set(CMAKE_CUDA_ARCHITECTURES all-major)
|
||
|
project(unitybuild_cu CUDA)
|
||
|
|
||
|
set(srcs "")
|
||
|
foreach(s RANGE 1 4)
|
||
|
set(src "${CMAKE_CURRENT_BINARY_DIR}/s${s}.cu")
|
||
|
file(WRITE "${src}" "int s${s}(void) { return 0; }\n")
|
||
|
list(APPEND srcs "${src}")
|
||
|
endforeach()
|
||
|
|
||
|
foreach(s RANGE 1 2)
|
||
|
set(src "${CMAKE_CURRENT_BINARY_DIR}/odr${s}.cu")
|
||
|
file(WRITE "${src}" "namespace odr { 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_MODE GROUP
|
||
|
)
|
||
|
|
||
|
set_source_files_properties(s1.cu s2.cu odr1.cu
|
||
|
PROPERTIES UNITY_GROUP "a"
|
||
|
)
|
||
|
set_source_files_properties(s3.cu s4.cu odr2.cu
|
||
|
PROPERTIES UNITY_GROUP "b"
|
||
|
)
|