CMakeLists.txt 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. # control where the static and shared libraries are built so that on windows
  8. # we don't need to tinker with the path to run the executable
  9. set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}")
  10. set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}")
  11. set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${PROJECT_BINARY_DIR}")
  12. option(BUILD_SHARED_LIBS "Build using shared libraries" ON)
  13. # configure a header file to pass the version number only
  14. configure_file(
  15. "${PROJECT_SOURCE_DIR}/TutorialConfig.h.in"
  16. "${PROJECT_BINARY_DIR}/TutorialConfig.h"
  17. )
  18. # add the MathFunctions library
  19. add_subdirectory(MathFunctions)
  20. # add the executable
  21. add_executable(Tutorial tutorial.cxx)
  22. target_link_libraries(Tutorial MathFunctions)
  23. # add the binary tree to the search path for include files
  24. # so that we will find TutorialConfig.h
  25. target_include_directories(Tutorial PUBLIC
  26. "${PROJECT_BINARY_DIR}"
  27. )
  28. # add the install targets
  29. install(TARGETS Tutorial DESTINATION bin)
  30. install(FILES "${PROJECT_BINARY_DIR}/TutorialConfig.h"
  31. DESTINATION include
  32. )
  33. # enable testing
  34. enable_testing()
  35. # does the application run
  36. add_test(NAME Runs COMMAND Tutorial 25)
  37. # does the usage message work?
  38. add_test(NAME Usage COMMAND Tutorial)
  39. set_tests_properties(Usage
  40. PROPERTIES PASS_REGULAR_EXPRESSION "Usage:.*number"
  41. )
  42. # define a function to simplify adding tests
  43. function(do_test target arg result)
  44. add_test(NAME Comp${arg} COMMAND ${target} ${arg})
  45. set_tests_properties(Comp${arg}
  46. PROPERTIES PASS_REGULAR_EXPRESSION ${result}
  47. )
  48. endfunction(do_test)
  49. # do a bunch of result based tests
  50. do_test(Tutorial 4 "4 is 2")
  51. do_test(Tutorial 9 "9 is 3")
  52. do_test(Tutorial 5 "5 is 2.236")
  53. do_test(Tutorial 7 "7 is 2.645")
  54. do_test(Tutorial 25 "25 is 5")
  55. do_test(Tutorial -25 "-25 is [-nan|nan|0]")
  56. do_test(Tutorial 0.0001 "0.0001 is 0.01")
  57. include(InstallRequiredSystemLibraries)
  58. set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/License.txt")
  59. set(CPACK_PACKAGE_VERSION_MAJOR "${Tutorial_VERSION_MAJOR}")
  60. set(CPACK_PACKAGE_VERSION_MINOR "${Tutorial_VERSION_MINOR}")
  61. include(CPack)