CMakeLists.txt 373 B

1234567891011
  1. add_library(MathFunctions mysqrt.cxx)
  2. # state that anybody linking to us needs to include the current source dir
  3. # to find MathFunctions.h, while we don't.
  4. target_include_directories(MathFunctions
  5. INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}
  6. )
  7. # install rules
  8. install(TARGETS MathFunctions DESTINATION lib)
  9. install(FILES MathFunctions.h DESTINATION include)