mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 13:20:47 -06:00
10 lines
161 B
CMake
10 lines
161 B
CMake
|
|
enable_language(C)
|
|
|
|
add_library(empty STATIC empty.c)
|
|
|
|
file(GENERATE
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/test.txt"
|
|
CONTENT "[$<TARGET_BUNDLE_DIR:empty>]"
|
|
)
|