CMakeLists.txt 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. cmake_minimum_required(VERSION 3.5)
  2. project(horrible-harry)
  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. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
  17. ###########
  18. # Suppress certain warnings
  19. ###########
  20. # set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
  21. # rm CMakeCache.txt and cmake . if you change any of the C++ Standards.
  22. ##############
  23. # C++ Standard
  24. ##############
  25. set(CMAKE_CXX_STANDARD 14)
  26. ## set(CMAKE_CXX_STANDARD 17)
  27. set(CMAKE_CXX_EXTENSIONS ON)
  28. # Are you debugging a buffer issue? If so, turn this to OFF.
  29. # This creates HUGE log files. Not for production!
  30. set(DISABLE_BUFFER_DEBUG ON CACHE BOOL "Turn off buffer debugging" FORCE)
  31. # Always disable in Release build.
  32. if((CMAKE_BUILD_TYPE STREQUAL Release) OR (CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo))
  33. message("Release build -- disable BUFFER DEBUG.")
  34. set(DISABLE_BUFFER_DEBUG ON CACHE BOOL "Turn off buffer debugging" FORCE)
  35. endif()
  36. # Display at configuration time what settings we're using.
  37. if(DISABLE_BUFFER_DEBUG)
  38. message("BUFFER DEBUG DISABLED (Good!)")
  39. else()
  40. message("WARNING: Big logs ahead! BUFFER DEBUG is ENABLED")
  41. endif()
  42. # Enable testing
  43. # set(BUILD_TESTING ON)
  44. # include(CTest)
  45. ### ADD gtest
  46. add_subdirectory(googletest)
  47. ### TESTS
  48. add_executable(test-lastseen test-lastseen.cpp lastseen.cpp)
  49. add_dependencies(test-lastseen gtest)
  50. target_link_libraries(test-lastseen gtest_main)
  51. enable_testing()
  52. add_test(NAME test-lastseen
  53. COMMAND test-lastseen)
  54. add_executable(test-utils test-utils.cpp utils.cpp)
  55. add_dependencies(test-utils gtest)
  56. target_link_libraries(test-utils gtest_main)
  57. if(DISABLE_BUFFER_DEBUG)
  58. target_compile_definitions(test-utils PUBLIC NO_BUFFER_DEBUG=1)
  59. endif()
  60. add_test(NAME test-utils
  61. COMMAND test-utils)
  62. add_executable(test-render test-render.cpp render.cpp terminal.cpp utils.cpp)
  63. add_dependencies(test-render gtest)
  64. target_link_libraries(test-render gtest_main)
  65. target_link_libraries(test-render zf_log)
  66. if(DISABLE_BUFFER_DEBUG)
  67. target_compile_definitions(test-render PUBLIC NO_BUFFER_DEBUG=1)
  68. endif()
  69. add_executable(test-mangle test-mangle.cpp wordplay.cpp render.cpp terminal.cpp charman.cpp lastseen.cpp logs_utils.cpp)
  70. add_dependencies(test-mangle gtest)
  71. target_link_libraries(test-mangle gtest_main)
  72. target_link_libraries(test-mangle zf_log)
  73. if(DISABLE_BUFFER_DEBUG)
  74. target_compile_definitions(test-mangle PUBLIC NO_BUFFER_DEBUG=1)
  75. endif()
  76. add_test(NAME test-render
  77. COMMAND test-render)
  78. add_test(NAME test-mangle COMMAND test-mangle)
  79. # include(FetchContent)
  80. #
  81. # FetchContent_Populate(
  82. # zf_log
  83. # GIT_REPOSITORY https://github.com/wonder-mice/zf_log.git
  84. # SOURCE_DIR zf_log
  85. # )
  86. # add_subdirectory(${zf_log_SOURCE_DIR}/src zf_log)
  87. # This works, if zf_log is pulled in.
  88. add_subdirectory(zf_log)
  89. # Example for how to define a test which uses gtest_gmock
  90. # add_executable(mytest tester.cpp)
  91. # target_link_libraries(mytest gmock_main)
  92. # Here's how to add all *.h and *.cpp files
  93. # to a project:
  94. #
  95. # file(GLOB SOURCES
  96. # header-folder/*.h
  97. # source-folder/*.cpp
  98. # )
  99. # add_executable(yourProj ${SOURCES})
  100. add_custom_command(
  101. OUTPUT images.h
  102. COMMAND ./build_images.sh
  103. DEPENDS ansi-to-src ghost.ans ghead.ans wolf.ans panther.ans bat.ans skull.ans skull-blink.ans icu.ans
  104. COMMENT "Generating images.h"
  105. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  106. )
  107. add_executable(hharry hharry.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp images.h wordplay.cpp charman.cpp logs_utils.cpp)
  108. target_link_libraries(hharry util)
  109. target_link_libraries(hharry zf_log)
  110. # target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
  111. target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
  112. if(DISABLE_BUFFER_DEBUG)
  113. target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
  114. endif()
  115. add_executable(try-re try-re.c)
  116. add_executable(ansi-color ansi-color.c)
  117. add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
  118. if(DISABLE_BUFFER_DEBUG)
  119. target_compile_definitions(ansi-to-src PUBLIC NO_BUFFER_DEBUG=1)
  120. endif()
  121. add_executable(images images.cpp utils.cpp images.h)
  122. target_link_libraries(images zf_log)
  123. if(DISABLE_BUFFER_DEBUG)
  124. target_compile_definitions(images PUBLIC NO_BUFFER_DEBUG=1)
  125. endif()