CMakeLists.txt 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. cmake_minimum_required(VERSION 3.15)
  2. # set the project name and version
  3. project(Tutorial VERSION 1.0)
  4. # specify the C++ standard
  5. add_library(tutorial_compiler_flags INTERFACE)
  6. target_compile_features(tutorial_compiler_flags INTERFACE cxx_std_11)
  7. # add compiler warning flags just when building this project via
  8. # the BUILD_INTERFACE genex
  9. set(gcc_like_cxx "$<COMPILE_LANG_AND_ID:CXX,ARMClang,AppleClang,Clang,GNU,LCC>")
  10. set(msvc_cxx "$<COMPILE_LANG_AND_ID:CXX,MSVC>")
  11. target_compile_options(tutorial_compiler_flags INTERFACE
  12. "$<${gcc_like_cxx}:$<BUILD_INTERFACE:-Wall;-Wextra;-Wshadow;-Wformat=2;-Wunused>>"
  13. "$<${msvc_cxx}:$<BUILD_INTERFACE:-W3>>"
  14. )
  15. # configure a header file to pass some of the CMake settings
  16. # to the source code
  17. configure_file(TutorialConfig.h.in TutorialConfig.h)
  18. # add the MathFunctions library
  19. add_subdirectory(MathFunctions)
  20. # add the executable
  21. add_executable(Tutorial tutorial.cxx)
  22. target_link_libraries(Tutorial PUBLIC MathFunctions tutorial_compiler_flags)
  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. include(CTest)
  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()
  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")