mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-12 10:10:08 -06:00
Fix the tests added by commit 0c141b03 (try_compile: Record output
location instead of reverse computing it, 2022-08-31), which were added
as old-and-new-signature tests but only used the old signature.
10 lines
309 B
CMake
10 lines
309 B
CMake
enable_language(C)
|
|
set(CMAKE_BUILD_TYPE RelWithDebInfo)
|
|
|
|
include(${CMAKE_CURRENT_SOURCE_DIR}/${try_compile_DEFS})
|
|
try_compile(RESULT
|
|
${try_compile_bindir_or_SOURCES} ${CMAKE_CURRENT_SOURCE_DIR}/src.c
|
|
COPY_FILE "${CMAKE_CURRENT_BINARY_DIR}/out.bin"
|
|
CMAKE_FLAGS "-DCMAKE_RUNTIME_OUTPUT_DIRECTORY=bin"
|
|
)
|