diff options
author | Ken Martin <ken.martin@kitware.com> | 2007-11-13 16:11:03 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2007-11-13 16:11:03 (GMT) |
commit | 58f0cad472e8f23563bc51ae579f15f2d02f50a9 (patch) | |
tree | 2a86bb1beb19800f03270013a2dec76aef0f4583 /Tests/Tutorial/Step4/MathFunctions | |
parent | 47c53e867fbfaedf5c7d899d4a4900cceb3305e5 (diff) | |
download | CMake-58f0cad472e8f23563bc51ae579f15f2d02f50a9.zip CMake-58f0cad472e8f23563bc51ae579f15f2d02f50a9.tar.gz CMake-58f0cad472e8f23563bc51ae579f15f2d02f50a9.tar.bz2 |
ENH: switch to new install commands to match book text
Diffstat (limited to 'Tests/Tutorial/Step4/MathFunctions')
-rw-r--r-- | Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt b/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt index 329c204..f386036 100644 --- a/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt +++ b/Tests/Tutorial/Step4/MathFunctions/CMakeLists.txt @@ -1,4 +1,4 @@ add_library(MathFunctions mysqrt.cxx) -install_targets (/bin MathFunctions) -install_files (/include FILES MathFunctions.h) +install (TARGETS MathFunctions DESTINATION bin) +install (FILES MathFunctions.h DESTINATION include) |