CMakeLists.txt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. # add the library that runs
  2. add_library(MathFunctions MathFunctions.cxx)
  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
  7. $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
  8. $<INSTALL_INTERFACE:include>
  9. )
  10. # should we use our own math functions
  11. option(USE_MYMATH "Use tutorial provided math implementation" ON)
  12. if(USE_MYMATH)
  13. target_compile_definitions(MathFunctions PRIVATE "USE_MYMATH")
  14. # first we add the executable that generates the table
  15. add_executable(MakeTable MakeTable.cxx)
  16. # add the command to generate the source code
  17. add_custom_command(
  18. OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/Table.h
  19. COMMAND MakeTable ${CMAKE_CURRENT_BINARY_DIR}/Table.h
  20. DEPENDS MakeTable
  21. )
  22. # library that just does sqrt
  23. add_library(SqrtLibrary STATIC
  24. mysqrt.cxx
  25. ${CMAKE_CURRENT_BINARY_DIR}/Table.h
  26. )
  27. # state that we depend on our binary dir to find Table.h
  28. target_include_directories(SqrtLibrary PRIVATE
  29. ${CMAKE_CURRENT_BINARY_DIR}
  30. )
  31. # state that SqrtLibrary need PIC when the default is shared libraries
  32. set_target_properties(SqrtLibrary PROPERTIES
  33. POSITION_INDEPENDENT_CODE ${BUILD_SHARED_LIBS}
  34. )
  35. target_link_libraries(MathFunctions PRIVATE SqrtLibrary)
  36. endif()
  37. # define the symbol stating we are using the declspec(dllexport) when
  38. # building on windows
  39. target_compile_definitions(MathFunctions PRIVATE "EXPORTING_MYMATH")
  40. # setup the version numbering
  41. set_property(TARGET MathFunctions PROPERTY VERSION "1.0.0")
  42. set_property(TARGET MathFunctions PROPERTY SOVERSION "1")
  43. # install rules
  44. install(TARGETS MathFunctions
  45. DESTINATION lib
  46. EXPORT MathFunctionsTargets)
  47. install(FILES MathFunctions.h DESTINATION include)