CMakeLists.txt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. cmake_minimum_required(VERSION 3.10)
  2. project(MyProject)
  3. ###########
  4. # Debug or Release
  5. ###########
  6. if (NOT CMAKE_BUILD_TYPE)
  7. ## set default to Debug
  8. set(CMAKE_BUILD_TYPE Debug) # override with -DCMAKE_BUILD_TYPE=Release
  9. message("==> CMAKE_BUILD_TYPE empty. Changing it to Debug.")
  10. else()
  11. message("==> CMAKE_BUILD_TYPE == ${CMAKE_BUILD_TYPE}.")
  12. endif()
  13. ## https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
  14. ## During Debug, use debug version of libstdc++ (asserts on access to invalid iterators, etc!)
  15. set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_GLIBCXX_DEBUG")
  16. ###########
  17. # Suppress certain warnings
  18. ###########
  19. # set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
  20. ##############
  21. # C++ Standard
  22. ##############
  23. set(CMAKE_CXX_STANDARD 14)
  24. set(CMAKE_CXX_EXTENSIONS OFF)
  25. # Enable testing
  26. # set(BUILD_TESTING ON)
  27. # include(CTest)
  28. ### ADD gtest
  29. add_subdirectory(googletest)
  30. ### TESTS
  31. add_executable(test-lastseen test-lastseen.cpp lastseen.cpp)
  32. add_dependencies(test-lastseen gtest)
  33. target_link_libraries(test-lastseen gtest_main)
  34. enable_testing()
  35. add_test(NAME test-lastseen
  36. COMMAND test-lastseen)
  37. add_executable(test-utils test-utils.cpp utils.cpp)
  38. add_dependencies(test-utils gtest)
  39. target_link_libraries(test-utils gtest_main)
  40. add_test(NAME test-utils
  41. COMMAND test-utils)
  42. # include(FetchContent)
  43. #
  44. # FetchContent_Populate(
  45. # zf_log
  46. # GIT_REPOSITORY https://github.com/wonder-mice/zf_log.git
  47. # SOURCE_DIR zf_log
  48. # )
  49. # add_subdirectory(${zf_log_SOURCE_DIR}/src zf_log)
  50. # This works, if zf_log is pulled in.
  51. add_subdirectory(zf_log)
  52. # Example for how to define a test which uses gtest_gmock
  53. # add_executable(mytest tester.cpp)
  54. # target_link_libraries(mytest gmock_main)
  55. # Here's how to add all *.h and *.cpp files
  56. # to a project:
  57. #
  58. # file(GLOB SOURCES
  59. # header-folder/*.h
  60. # source-folder/*.cpp
  61. # )
  62. # add_executable(yourProj ${SOURCES})
  63. add_executable(hharry hharry.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp images.h)
  64. target_link_libraries(hharry util)
  65. target_link_libraries(hharry zf_log)
  66. target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
  67. add_executable(try-re try-re.c)
  68. add_executable(ansi-color ansi-color.c)
  69. add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
  70. add_executable(images images.cpp utils.cpp images.h)
  71. target_link_libraries(images zf_log)
  72. add_custom_command(
  73. OUTPUT images.h
  74. COMMAND ./build_images.sh
  75. DEPENDS ansi-to-src ghost.ans ghead.ans wolf.ans panther.ans bat.ans skull.ans skull-blink.ans
  76. COMMENT "Generating images.h."
  77. )