summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/MultiPackage/MathFunctions
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2019-07-23 17:41:00 (GMT)
committerBrad King <brad.king@kitware.com>2019-07-25 11:34:41 (GMT)
commit98164b707f4024c4c2b2a6f31c7d4e51eb53a9d4 (patch)
tree0b715bf84f704b16f93c4808a9f52f3311926139 /Help/guide/tutorial/MultiPackage/MathFunctions
parenta1c6d7e9af5a241b1afa29b3f7459ee9ee4ec77a (diff)
downloadCMake-98164b707f4024c4c2b2a6f31c7d4e51eb53a9d4.zip
CMake-98164b707f4024c4c2b2a6f31c7d4e51eb53a9d4.tar.gz
CMake-98164b707f4024c4c2b2a6f31c7d4e51eb53a9d4.tar.bz2
Tutorial: MultiPackage now correctly compiles
Diffstat (limited to 'Help/guide/tutorial/MultiPackage/MathFunctions')
-rw-r--r--Help/guide/tutorial/MultiPackage/MathFunctions/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/MultiPackage/MathFunctions/CMakeLists.txt b/Help/guide/tutorial/MultiPackage/MathFunctions/CMakeLists.txt
index 161ad64..63c0f5f 100644
--- a/Help/guide/tutorial/MultiPackage/MathFunctions/CMakeLists.txt
+++ b/Help/guide/tutorial/MultiPackage/MathFunctions/CMakeLists.txt
@@ -1,4 +1,3 @@
-
# add the library that runs
add_library(MathFunctions MathFunctions.cxx)
@@ -62,6 +61,7 @@ target_compile_definitions(MathFunctions PRIVATE "EXPORTING_MYMATH")
set_property(TARGET MathFunctions PROPERTY VERSION "1.0.0")
set_property(TARGET MathFunctions PROPERTY SOVERSION "1")
+# install rules
install(TARGETS MathFunctions
DESTINATION lib
EXPORT MathFunctionsTargets)