CMakeLists.txt 5.7 KB

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