mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 22:10:32 +00:00
14 lines
282 B
CMake
14 lines
282 B
CMake
# a simple test cas
|
|
project (OutOfSource)
|
|
|
|
add_subdirectory(SubDir)
|
|
|
|
get_directory_property(ANIMAL DIRECTORY OutOfSourceSubdir DEFINITION WEASELS)
|
|
|
|
configure_file(
|
|
${OutOfSource_SOURCE_DIR}/testdp.h.in
|
|
${OutOfSource_BINARY_DIR}/SubDir/OutOfSourceSubdir/testdp.h
|
|
)
|
|
|
|
set(KEN 1)
|