diff options
Diffstat (limited to 'Tests/Tutorial/Step3/CMakeLists.txt')
-rw-r--r-- | Tests/Tutorial/Step3/CMakeLists.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Tests/Tutorial/Step3/CMakeLists.txt b/Tests/Tutorial/Step3/CMakeLists.txt index a5009f1..5481bce 100644 --- a/Tests/Tutorial/Step3/CMakeLists.txt +++ b/Tests/Tutorial/Step3/CMakeLists.txt @@ -30,8 +30,9 @@ add_executable (Tutorial tutorial.cxx) target_link_libraries (Tutorial ${EXTRA_LIBS}) # add the install targets -install_targets (/bin Tutorial) -install_files (/include FILES "${PROJECT_BINARY_DIR}/TutorialConfig.h") +install (TARGETS Tutorial DESTINATION bin) +install (FILES "${PROJECT_BINARY_DIR}/TutorialConfig.h" + DESTINATION include) # enable testing |