CMakeLists.txt 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. # Always disable in Release build.
  34. if((CMAKE_BUILD_TYPE STREQUAL Release) OR (CMAKE_BUILD_TYPE STREQUAL RelWithDebInfo))
  35. message("Release build -- disable BUFFER DEBUG.")
  36. set(DISABLE_BUFFER_DEBUG ON CACHE BOOL "Turn off buffer debugging" FORCE)
  37. endif()
  38. # Display at configuration time what settings we're using.
  39. if(DISABLE_BUFFER_DEBUG)
  40. message("BUFFER DEBUG DISABLED (Good!)")
  41. else()
  42. message("WARNING: Big logs ahead! BUFFER DEBUG is ENABLED")
  43. endif()
  44. # Enable testing
  45. # set(BUILD_TESTING ON)
  46. # include(CTest)
  47. ### ADD gtest
  48. add_subdirectory(googletest)
  49. ### TESTS
  50. add_executable(test-lastseen test-lastseen.cpp lastseen.cpp)
  51. add_dependencies(test-lastseen gtest)
  52. target_link_libraries(test-lastseen gtest_main)
  53. enable_testing()
  54. add_test(NAME test-lastseen
  55. COMMAND test-lastseen)
  56. add_executable(test-utils test-utils.cpp utils.cpp)
  57. add_dependencies(test-utils gtest)
  58. target_link_libraries(test-utils gtest_main)
  59. if(DISABLE_BUFFER_DEBUG)
  60. target_compile_definitions(test-utils PUBLIC NO_BUFFER_DEBUG=1)
  61. endif()
  62. add_test(NAME test-utils
  63. COMMAND test-utils)
  64. add_executable(test-render test-render.cpp render.cpp terminal.cpp utils.cpp)
  65. add_dependencies(test-render gtest)
  66. target_link_libraries(test-render gtest_main)
  67. target_link_libraries(test-render zf_log)
  68. if(DISABLE_BUFFER_DEBUG)
  69. target_compile_definitions(test-render PUBLIC NO_BUFFER_DEBUG=1)
  70. endif()
  71. add_test(NAME test-render
  72. COMMAND test-render)
  73. add_executable(test-mangle test-mangle.cpp wordplay.cpp render.cpp terminal.cpp charman.cpp lastseen.cpp logs_utils.cpp images.h)
  74. add_dependencies(test-mangle gtest)
  75. target_link_libraries(test-mangle gtest_main)
  76. target_link_libraries(test-mangle zf_log)
  77. if(DISABLE_BUFFER_DEBUG)
  78. target_compile_definitions(test-mangle PUBLIC NO_BUFFER_DEBUG=1)
  79. endif()
  80. add_test(NAME test-mangle COMMAND test-mangle)
  81. add_executable(test-terminal test-terminal.cpp terminal.cpp utils.cpp)
  82. add_dependencies(test-terminal gtest)
  83. target_link_libraries(test-terminal gtest_main)
  84. target_link_libraries(test-terminal zf_log)
  85. if(DISABLE_BUFFER_DEBUG)
  86. target_compile_definitions(test-terminal PUBLIC NO_BUFFER_DEBUG=1)
  87. endif()
  88. add_test(NAME test-terminal COMMAND test-terminal)
  89. # include(FetchContent)
  90. #
  91. # FetchContent_Populate(
  92. # zf_log
  93. # GIT_REPOSITORY https://github.com/wonder-mice/zf_log.git
  94. # SOURCE_DIR zf_log
  95. # )
  96. # add_subdirectory(${zf_log_SOURCE_DIR}/src zf_log)
  97. # This works, if zf_log is pulled in.
  98. add_subdirectory(zf_log)
  99. # Example for how to define a test which uses gtest_gmock
  100. # add_executable(mytest tester.cpp)
  101. # target_link_libraries(mytest gmock_main)
  102. # Here's how to add all *.h and *.cpp files
  103. # to a project:
  104. #
  105. # file(GLOB SOURCES
  106. # header-folder/*.h
  107. # source-folder/*.cpp
  108. # )
  109. # add_executable(yourProj ${SOURCES})
  110. add_executable(ansi-to-src ansi-to-src.cpp utils.cpp)
  111. if(DISABLE_BUFFER_DEBUG)
  112. target_compile_definitions(ansi-to-src PUBLIC NO_BUFFER_DEBUG=1)
  113. endif()
  114. # Everything in the ansi directory is a dependency for images.h
  115. file(GLOB IMAGES
  116. ansi/*.ans
  117. )
  118. add_custom_command(
  119. OUTPUT images.h
  120. COMMAND ./build_images.sh
  121. DEPENDS ansi-to-src ${IMAGES}
  122. COMMENT "Generating images.h"
  123. WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
  124. )
  125. add_executable(hharry hharry.cpp lastseen.cpp terminal.cpp render.cpp utils.cpp images.h wordplay.cpp charman.cpp logs_utils.cpp)
  126. target_link_libraries(hharry util)
  127. target_link_libraries(hharry zf_log)
  128. # target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_INFO)
  129. target_compile_definitions(hharry PUBLIC ZF_LOG_DEF_LEVEL=ZF_LOG_VERBOSE)
  130. if(DISABLE_BUFFER_DEBUG)
  131. target_compile_definitions(hharry PUBLIC NO_BUFFER_DEBUG=1)
  132. endif()
  133. # If you want this: ninja try-re or make try-re
  134. add_executable(try-re EXCLUDE_FROM_ALL try-re.c)
  135. add_executable(ansi-color EXCLUDE_FROM_ALL ansi-color.c)
  136. add_executable(images images.cpp utils.cpp images.h)
  137. target_link_libraries(images zf_log)
  138. if(DISABLE_BUFFER_DEBUG)
  139. target_compile_definitions(images PUBLIC NO_BUFFER_DEBUG=1)
  140. endif()