CMakeLists.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. cmake_minimum_required(VERSION 3.5)
  2. project(horrible-harry
  3. VERSION 0.1
  4. LANGUAGES CXX C)
  5. ###########
  6. # Debug or Release
  7. ###########
  8. if (NOT CMAKE_BUILD_TYPE)
  9. ## set default to Debug
  10. set(CMAKE_BUILD_TYPE Debug) # override with -DCMAKE_BUILD_TYPE=Release
  11. message("==> CMAKE_BUILD_TYPE empty. Changing it to Debug.")
  12. else()
  13. message("==> CMAKE_BUILD_TYPE == ${CMAKE_BUILD_TYPE}.")
  14. endif()
  15. ## https://gcc.gnu.org/onlinedocs/libstdc++/manual/using_macros.html
  16. ## During Debug, use debug version of libstdc++ (asserts on access to invalid iterators, etc!)
  17. set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -D_GLIBCXX_DEBUG")
  18. set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")
  19. ###########
  20. # Suppress certain warnings
  21. ###########
  22. # set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated-declarations")
  23. # rm CMakeCache.txt and cmake . if you change any of the C++ Standards.
  24. ##############
  25. # C++ Standard
  26. ##############
  27. set(CMAKE_CXX_STANDARD 14)
  28. ## set(CMAKE_CXX_STANDARD 17)
  29. set(CMAKE_CXX_EXTENSIONS ON)
  30. # Are you debugging a buffer issue? If so, turn this to OFF.
  31. # This creates HUGE log files. Not for production!
  32. set(DISABLE_BUFFER_DEBUG ON CACHE BOOL "Turn off buffer debugging" FORCE)
  33. # set(DISABLE_BUFFER_DEBUG OFF CACHE BOOL "Turn off buffer debugging" FORCE)
  34. # Always disable in Release build.
  35. if((CMAKE_BUILD_TYPE STREQUAL Release) OR (CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo))
  36. message("Release build -- disable BUFFER DEBUG.")
  37. set(DISABLE_BUFFER_DEBUG ON CACHE BOOL "Turn off buffer debugging" FORCE)
  38. endif()
  39. # Display at configuration time what settings we're using.
  40. if(DISABLE_BUFFER_DEBUG)
  41. message("BUFFER DEBUG DISABLED (Good!)")
  42. else()
  43. message("WARNING: Big logs ahead! BUFFER DEBUG is ENABLED")
  44. endif()
  45. # Enable testing
  46. # set(BUILD_TESTING ON)
  47. # include(CTest)
  48. ### ADD gtest
  49. add_subdirectory(googletest)
  50. ### TESTS
  51. add_executable(test-lastseen test-lastseen.cpp lastseen.cpp)
  52. add_dependencies(test-lastseen gtest)
  53. target_link_libraries(test-lastseen gtest_main)
  54. enable_testing()
  55. add_test(NAME test-lastseen
  56. COMMAND test-lastseen)
  57. add_executable(test-utils test-utils.cpp utils.cpp)
  58. add_dependencies(test-utils gtest)
  59. target_link_libraries(test-utils gtest_main)
  60. if(DISABLE_BUFFER_DEBUG)
  61. target_compile_definitions(test-utils PUBLIC NO_BUFFER_DEBUG=1)
  62. endif()
  63. add_test(NAME test-utils
  64. COMMAND test-utils)
  65. add_executable(test-render test-render.cpp render.cpp terminal.cpp utils.cpp)
  66. add_dependencies(test-render gtest)
  67. target_link_libraries(test-render gtest_main)
  68. target_link_libraries(test-render zf_log)
  69. if(DISABLE_BUFFER_DEBUG)
  70. target_compile_definitions(test-render PUBLIC NO_BUFFER_DEBUG=1)
  71. endif()
  72. add_test(NAME test-render
  73. COMMAND test-render)
  74. add_executable(test-mangle test-mangle.cpp wordplay.cpp render.cpp terminal.cpp charman.cpp lastseen.cpp logs_utils.cpp images.h)
  75. add_dependencies(test-mangle gtest)
  76. target_link_libraries(test-mangle gtest_main)
  77. target_link_libraries(test-mangle zf_log)
  78. if(DISABLE_BUFFER_DEBUG)
  79. target_compile_definitions(test-mangle PUBLIC NO_BUFFER_DEBUG=1)
  80. endif()
  81. add_test(NAME test-mangle COMMAND test-mangle)
  82. add_executable(test-terminal test-terminal.cpp terminal.cpp utils.cpp)
  83. add_dependencies(test-terminal gtest)
  84. target_link_libraries(test-terminal gtest_main)
  85. target_link_libraries(test-terminal zf_log)
  86. if(DISABLE_BUFFER_DEBUG)
  87. target_compile_definitions(test-terminal PUBLIC NO_BUFFER_DEBUG=1)
  88. endif()
  89. add_test(NAME test-terminal COMMAND test-terminal)
  90. # include(FetchContent)
  91. #
  92. # FetchContent_Populate(
  93. # zf_log
  94. # GIT_REPOSITORY https://github.com/wonder-mice/zf_log.git
  95. # SOURCE_DIR zf_log
  96. # )
  97. # add_subdirectory(${zf_log_SOURCE_DIR}/src zf_log)
  98. # This works, if zf_log is pulled in.
  99. add_subdirectory(zf_log)
  100. # Example for how to define a test which uses gtest_gmock
  101. # add_executable(mytest tester.cpp)
  102. # target_link_libraries(mytest gmock_main)
  103. # Here's how to add all *.h and *.cpp files
  104. # to a project:
  105. #
  106. # file(GLOB SOURCES
  107. # header-folder/*.h
  108. # source-folder/*.cpp
  109. # )
  110. # add_executable(yourProj ${SOURCES})
  111. add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
  112. if(DISABLE_BUFFER_DEBUG)
  113. target_compile_definitions(ansi-to-src PUBLIC NO_BUFFER_DEBUG=1)
  114. endif()
  115. # Everything in the ansi directory is a dependency for images.h
  116. file(GLOB IMAGES
  117. ansi/*.ans
  118. )
  119. add_custom_command(
  120. OUTPUT images.h
  121. COMMAND ./build_images.sh
  122. DEPENDS ansi-to-src ${IMAGES}
  123. COMMENT "Generating images.h"
  124. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  125. )
  126. add_executable(hharry hharry.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp images.h wordplay.cpp charman.cpp logs_utils.cpp)
  127. target_link_libraries(hharry util)
  128. target_link_libraries(hharry zf_log)
  129. # target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
  130. target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
  131. if(DISABLE_BUFFER_DEBUG)
  132. target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
  133. endif()
  134. # If you want this: ninja try-re or make try-re
  135. add_executable(try-re EXCLUDE_FROM_ALL try-re.c)
  136. add_executable(ansi-color EXCLUDE_FROM_ALL ansi-color.c)
  137. add_executable(images images.cpp utils.cpp images.h)
  138. target_link_libraries(images zf_log)
  139. if(DISABLE_BUFFER_DEBUG)
  140. target_compile_definitions(images PUBLIC NO_BUFFER_DEBUG=1)
  141. endif()