mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-25 15:49:08 -05:00
f2ddedfa58
Latest material from data.kitware.com -> Collections -> Courses -> CMake.
8 lines
258 B
CMake
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}
|
|
)
|