diff options
author | Brad King <brad.king@kitware.com> | 2022-10-07 13:39:55 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-10-07 13:40:16 (GMT) |
commit | a546a19385f26cb39c8ada3c146498036765fad7 (patch) | |
tree | 2166d0b4e5fa1b05fcbc083c8b2188a8a0459664 /Help/guide/tutorial/Step11/MathFunctions | |
parent | 7988e60ae2bac3fc4b19a89feb79f6881030ed65 (diff) | |
parent | 92edbce34271864a8c57c07b0ee289cd45b74d28 (diff) | |
download | CMake-a546a19385f26cb39c8ada3c146498036765fad7.zip CMake-a546a19385f26cb39c8ada3c146498036765fad7.tar.gz CMake-a546a19385f26cb39c8ada3c146498036765fad7.tar.bz2 |
Merge topic 'tutorial_step5_update'
92edbce342 Tutorial: Update step 5 style
Acked-by: Kitware Robot <kwrobot@kitware.com>
Acked-by: buildbot <buildbot@kitware.com>
Merge-request: !7728
Diffstat (limited to 'Help/guide/tutorial/Step11/MathFunctions')
-rw-r--r-- | Help/guide/tutorial/Step11/MathFunctions/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step11/MathFunctions/CMakeLists.txt b/Help/guide/tutorial/Step11/MathFunctions/CMakeLists.txt index 0e86a12..a60fb63 100644 --- a/Help/guide/tutorial/Step11/MathFunctions/CMakeLists.txt +++ b/Help/guide/tutorial/Step11/MathFunctions/CMakeLists.txt @@ -50,10 +50,11 @@ target_link_libraries(MathFunctions PUBLIC tutorial_compiler_flags) # building on windows target_compile_definitions(MathFunctions PRIVATE "EXPORTING_MYMATH") -# install rules +# install libs set(installable_libs MathFunctions tutorial_compiler_flags) if(TARGET SqrtLibrary) list(APPEND installable_libs SqrtLibrary) endif() install(TARGETS ${installable_libs} DESTINATION lib) +# install include headers install(FILES MathFunctions.h DESTINATION include) |