CMakeLists.txt 501 B

1234567891011121314
  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. target_link_libraries(MathFunctions tutorial_compiler_flags)
  8. # install rules
  9. set(installable_libs MathFunctions tutorial_compiler_flags)
  10. install(TARGETS ${installable_libs} DESTINATION lib)
  11. install(FILES MathFunctions.h DESTINATION include)