|
|
@@ -0,0 +1,14 @@
|
|
|
+set(CMAKE_INTERMEDIATE_DIR_STRATEGY SHORT CACHE STRING "" FORCE)
|
|
|
+
|
|
|
+project(unitybuild_cxx_short CXX)
|
|
|
+
|
|
|
+set(srcs "")
|
|
|
+foreach(s RANGE 1 8)
|
|
|
+ set(src "${CMAKE_CURRENT_BINARY_DIR}/s${s}.cxx")
|
|
|
+ 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)
|