CMakeLists.txt 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. cmake_minimum_required(VERSION 3.3)
  2. project(Tutorial)
  3. set(CMAKE_CXX_STANDARD 14)
  4. # set the version number
  5. set(Tutorial_VERSION_MAJOR 1)
  6. set(Tutorial_VERSION_MINOR 0)
  7. # does this system provide the log and exp functions?
  8. include(CheckSymbolExists)
  9. set(CMAKE_REQUIRED_LIBRARIES "m")
  10. check_symbol_exists(log "math.h" HAVE_LOG)
  11. check_symbol_exists(exp "math.h" HAVE_EXP)
  12. # should we use our own math functions
  13. option(USE_MYMATH "Use tutorial provided math implementation" ON)
  14. # configure a header file to pass the version number only
  15. configure_file(
  16. "${PROJECT_SOURCE_DIR}/TutorialConfig.h.in"
  17. "${PROJECT_BINARY_DIR}/TutorialConfig.h"
  18. )
  19. # add the MathFunctions library?
  20. if(USE_MYMATH)
  21. add_subdirectory(MathFunctions)
  22. list(APPEND EXTRA_LIBS MathFunctions)
  23. endif()
  24. # add the executable
  25. add_executable(Tutorial tutorial.cxx)
  26. target_link_libraries(Tutorial PUBLIC ${EXTRA_LIBS})
  27. # add the binary tree to the search path for include files
  28. # so that we will find TutorialConfig.h
  29. target_include_directories(Tutorial PUBLIC
  30. "${PROJECT_BINARY_DIR}"
  31. )
  32. # add the install targets
  33. install(TARGETS Tutorial DESTINATION bin)
  34. install(FILES "${PROJECT_BINARY_DIR}/TutorialConfig.h"
  35. DESTINATION include
  36. )
  37. # enable testing
  38. include(CTest)
  39. # does the application run
  40. add_test(NAME Runs COMMAND Tutorial 25)
  41. # does the usage message work?
  42. add_test(NAME Usage COMMAND Tutorial)
  43. set_tests_properties(Usage
  44. PROPERTIES PASS_REGULAR_EXPRESSION "Usage:.*number"
  45. )
  46. # define a function to simplify adding tests
  47. function(do_test target arg result)
  48. add_test(NAME Comp${arg} COMMAND ${target} ${arg})
  49. set_tests_properties(Comp${arg}
  50. PROPERTIES PASS_REGULAR_EXPRESSION ${result}
  51. )
  52. endfunction(do_test)
  53. # do a bunch of result based tests
  54. do_test(Tutorial 4 "4 is 2")
  55. do_test(Tutorial 9 "9 is 3")
  56. do_test(Tutorial 5 "5 is 2.236")
  57. do_test(Tutorial 7 "7 is 2.645")
  58. do_test(Tutorial 25 "25 is 5")
  59. do_test(Tutorial -25 "-25 is [-nan|nan|0]")
  60. do_test(Tutorial 0.0001 "0.0001 is 0.01")
  61. include(InstallRequiredSystemLibraries)
  62. set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/License.txt")
  63. set(CPACK_PACKAGE_VERSION_MAJOR "${Tutorial_VERSION_MAJOR}")
  64. set(CPACK_PACKAGE_VERSION_MINOR "${Tutorial_VERSION_MINOR}")
  65. include(CPack)