diff options
author | Brad King <brad.king@kitware.com> | 2007-03-12 14:23:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-03-12 14:23:06 (GMT) |
commit | cf7eeab37aa644a0a09cb40e8958d99e8d771857 (patch) | |
tree | 26654def4fd4d24ad01f258be6ab7ca446390fcb /Tests/Complex/Library | |
parent | c03217d5609488b997313517abbac69abcabebc8 (diff) | |
download | CMake-cf7eeab37aa644a0a09cb40e8958d99e8d771857.zip CMake-cf7eeab37aa644a0a09cb40e8958d99e8d771857.tar.gz CMake-cf7eeab37aa644a0a09cb40e8958d99e8d771857.tar.bz2 |
ENH: Testing new target properties RUNTIME_OUTPUT_DIRECTORY, LIBRARY_OUTPUT_DIRECTORY, and ARCHIVE_OUTPUT_DIRECTORY. This is an incremental fix for bug#2240 and bug#4210.
Diffstat (limited to 'Tests/Complex/Library')
-rw-r--r-- | Tests/Complex/Library/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/Complex/Library/CMakeLists.txt b/Tests/Complex/Library/CMakeLists.txt index 3a74efc..495ceb8 100644 --- a/Tests/Complex/Library/CMakeLists.txt +++ b/Tests/Complex/Library/CMakeLists.txt @@ -7,6 +7,7 @@ REMOVE_DEFINITIONS(-DCMAKE_IS_REALLY_FUN) # UTILITY_SOURCE(CREATE_FILE_EXE create_file "." create_file.cxx) ADD_EXECUTABLE(create_file create_file.cxx) +SET_TARGET_PROPERTIES(create_file PROPERTIES RUNTIME_OUTPUT_DIRECTORY ".") # # Create static library |