mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 13:51:33 -06:00
ENH: switch to new install commands to match book text
This commit is contained in:
@@ -35,8 +35,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
|
||||
enable_testing ()
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user