CMakeLists.txt 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. # TODO 3: Install Tutorial in the bin directory
  29. # Hint: Use the TARGETS and DESTINATION parameters
  30. # TODO 4: Install TutorialConfig.h to the include directory
  31. # Hint: Use the FILES and DESTINATION parameters
  32. # TODO 5: Enable testing
  33. # TODO 6: Add a test called Runs which runs the following command:
  34. # $ Tutorial 25
  35. # TODO 7: Add a test called Usage which runs the following command:
  36. # $ Tutorial
  37. # Make sure the expected output is displayed.
  38. # Hint: Use the PASS_REGULAR_EXPRESSION property with "Usage.*number"
  39. # TODO 8: Add a test which runs the following command:
  40. # $ Tutorial 4
  41. # Make sure the result is correct.
  42. # Hint: Use the PASS_REGULAR_EXPRESSION property with "4 is 2"
  43. # TODO 9: Add more tests. Create a function called do_test to avoid copy +
  44. # paste. Test the following values: 4, 9, 5, 7, 25, -25 and 0.0001.