mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-07 22:59:56 -05:00
997af2e1a6
Evaluate to the name of the bundle directory for a given bundle target. Fixes: #23409
10 lines
166 B
CMake
10 lines
166 B
CMake
|
|
enable_language(C)
|
|
|
|
add_library(empty STATIC empty.c)
|
|
|
|
file(GENERATE
|
|
OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/test.txt"
|
|
CONTENT "[$<TARGET_BUNDLE_DIR_NAME:empty>]"
|
|
)
|