CMakeLists.txt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. cmake_minimum_required(VERSION 3.0)
  2. project(ircdoor
  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 RelWithDebInfo) # 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. # C++ Standard
  21. ##############
  22. set(CMAKE_CXX_STANDARD 14)
  23. # set(CMAKE_CXX_STANDARD 17)
  24. set(CMAKE_CXX_EXTENSIONS ON)
  25. set(THREADS_PREFER_PTHEAD_FLAG ON)
  26. set(BOOST_THREAD_DYN_LINK ON) # I don't think this is seen
  27. set(Boost_USE_STATIC_LIBS OFF)
  28. set(Boost_USE_MULTITHREADED ON)
  29. set(Boost_USE_STATIC_RUNTIME OFF)
  30. find_package(Boost COMPONENTS system thread REQUIRED)
  31. find_package(Threads REQUIRED)
  32. find_package(OpenSSL REQUIRED)
  33. set(LINK_LIBS ${Boost_LIBRARIES} ${Boost_SYSTEM_LIBRARY} ${CMAKE_THREAD_LIBS_INIT} ${OPENSSL_LIBRARIES})
  34. if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/door++)
  35. message("***")
  36. message("*** ERROR/MISSING *** please run: git clone https://github.com/stevet11/door.git door++")
  37. message("*** (Or whatever git clone you need for door++)")
  38. message("***")
  39. endif()
  40. add_subdirectory(door++)
  41. if(NOT EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/yaml-cpp)
  42. message("***")
  43. message("*** ERROR/MISSING *** please run: git clone https://github.com/jbeder/yaml-cpp.git --depth 1")
  44. message("***")
  45. endif()
  46. add_subdirectory(yaml-cpp)
  47. add_executable(irc-door main.cpp irc.h irc.cpp render.h render.cpp input.h input.cpp)
  48. target_link_libraries(irc-door door++ pthread ${LINK_LIBS} dl yaml-cpp)