Imported Upstream version 3.25.0
[platform/upstream/cmake.git] / Help / guide / tutorial / Step4 / MathFunctions / CMakeLists.txt
1 add_library(MathFunctions mysqrt.cxx)
2
3 # state that anybody linking to us needs to include the current source dir
4 # to find MathFunctions.h, while we don't.
5 target_include_directories(MathFunctions
6           INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
7           )
8
9 # TODO 3: Link to tutorial_compiler_flags