summaryrefslogtreecommitdiffstats
path: root/Help/guide/tutorial/Step4/MathFunctions
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2023-05-01 15:37:33 (GMT)
committerKitware Robot <kwrobot@kitware.com>2023-05-01 15:37:43 (GMT)
commitc2100084c85aed33eea1f4abe83442dddc393137 (patch)
tree1f9412aa868c33f158d1cbbce721d19a38edddf3 /Help/guide/tutorial/Step4/MathFunctions
parent4bb13d6a5b382cb30d40b21e04d1d4ad6833ac35 (diff)
parentc6a426198a9ea204d6e5990467426a86bd07b25c (diff)
downloadCMake-c2100084c85aed33eea1f4abe83442dddc393137.zip
CMake-c2100084c85aed33eea1f4abe83442dddc393137.tar.gz
CMake-c2100084c85aed33eea1f4abe83442dddc393137.tar.bz2
Merge topic 'tutorial-iface-order'
c6a426198a Tutorial: Move Step4-Ex1 to Step3-Ex2 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8417
Diffstat (limited to 'Help/guide/tutorial/Step4/MathFunctions')
-rw-r--r--Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt7
1 files changed, 4 insertions, 3 deletions
diff --git a/Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt b/Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt
index ffab4f0..48561eb 100644
--- a/Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt
+++ b/Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt
@@ -17,9 +17,10 @@ if (USE_MYMATH)
mysqrt.cxx
)
- # TODO 4: Link to tutorial_compiler_flags
-
+ # link our compiler flags interface library
+ target_link_libraries(SqrtLibrary PUBLIC tutorial_compiler_flags)
target_link_libraries(MathFunctions PUBLIC SqrtLibrary)
endif()
-# TODO 3: Link to tutorial_compiler_flags
+# link our compiler flags interface library
+target_link_libraries(MathFunctions PUBLIC tutorial_compiler_flags)