CMakeLists.txt 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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_test(NAME test-render
  70. COMMAND test-render)
  71. add_executable(test-mangle test-mangle.cpp wordplay.cpp render.cpp terminal.cpp charman.cpp lastseen.cpp logs_utils.cpp)
  72. add_dependencies(test-mangle gtest)
  73. target_link_libraries(test-mangle gtest_main)
  74. target_link_libraries(test-mangle zf_log)
  75. if(DISABLE_BUFFER_DEBUG)
  76. target_compile_definitions(test-mangle PUBLIC NO_BUFFER_DEBUG=1)
  77. endif()
  78. add_test(NAME test-mangle COMMAND test-mangle)
  79. add_executable(test-terminal test-terminal.cpp terminal.cpp utils.cpp)
  80. add_dependencies(test-terminal gtest)
  81. target_link_libraries(test-terminal gtest_main)
  82. target_link_libraries(test-terminal zf_log)
  83. if(DISABLE_BUFFER_DEBUG)
  84. target_compile_definitions(test-terminal PUBLIC NO_BUFFER_DEBUG=1)
  85. endif()
  86. add_test(NAME test-terminal COMMAND test-terminal)
  87. # include(FetchContent)
  88. #
  89. # FetchContent_Populate(
  90. # zf_log
  91. # GIT_REPOSITORY https://github.com/wonder-mice/zf_log.git
  92. # SOURCE_DIR zf_log
  93. # )
  94. # add_subdirectory(${zf_log_SOURCE_DIR}/src zf_log)
  95. # This works, if zf_log is pulled in.
  96. add_subdirectory(zf_log)
  97. # Example for how to define a test which uses gtest_gmock
  98. # add_executable(mytest tester.cpp)
  99. # target_link_libraries(mytest gmock_main)
  100. # Here's how to add all *.h and *.cpp files
  101. # to a project:
  102. #
  103. # file(GLOB SOURCES
  104. # header-folder/*.h
  105. # source-folder/*.cpp
  106. # )
  107. # add_executable(yourProj ${SOURCES})
  108. add_custom_command(
  109. OUTPUT images.h
  110. COMMAND ./build_images.sh
  111. DEPENDS ansi-to-src ghost.ans ghead.ans wolf.ans panther.ans bat.ans skull.ans skull-blink.ans icu.ans
  112. COMMENT "Generating images.h"
  113. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  114. )
  115. add_executable(hharry hharry.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp images.h wordplay.cpp charman.cpp logs_utils.cpp)
  116. target_link_libraries(hharry util)
  117. target_link_libraries(hharry zf_log)
  118. # target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
  119. target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
  120. if(DISABLE_BUFFER_DEBUG)
  121. target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
  122. endif()
  123. add_executable(try-re try-re.c)
  124. add_executable(ansi-color ansi-color.c)
  125. add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
  126. if(DISABLE_BUFFER_DEBUG)
  127. target_compile_definitions(ansi-to-src PUBLIC NO_BUFFER_DEBUG=1)
  128. endif()
  129. add_executable(images images.cpp utils.cpp images.h)
  130. target_link_libraries(images zf_log)
  131. if(DISABLE_BUFFER_DEBUG)
  132. target_compile_definitions(images PUBLIC NO_BUFFER_DEBUG=1)
  133. endif()