1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-10-16 05:26:58 +08:00
Files
CMake/Help/guide/tutorial/Step4/MathFunctions/CMakeLists.txt
2019-06-18 10:36:16 -04:00

8 lines
258 B
CMake

add_library(MathFunctions mysqrt.cxx)
# state that anybody linking to us needs to include the current source dir
# to find MathFunctions.h, while we don't.
target_include_directories(MathFunctions
INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
)