mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
Since it can be set in the environment when running the test suite, guard tests which are sensitive to intermediate directory strategy changes with explicit settings.
18 lines
383 B
CMake
18 lines
383 B
CMake
set(CMAKE_INTERMEDIATE_DIR_STRATEGY FULL CACHE STRING "" FORCE)
|
|
|
|
project(unitybuild_default_batchsize C)
|
|
|
|
set(srcs "")
|
|
foreach(s RANGE 1 10)
|
|
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
|
|
)
|