2023-09-23 13:55:41 +01:00
|
|
|
cmake_minimum_required(VERSION 3.20)
|
|
|
|
set(CMAKE_BUILD_TYPE Debug) # Debug or Release
|
2024-08-08 11:41:42 +01:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
2023-09-23 13:55:41 +01:00
|
|
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
|
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS 1) # export our compiler flags for clangd to read
|
2023-09-15 13:00:49 +01:00
|
|
|
|
2023-09-25 22:09:15 +01:00
|
|
|
project(BlogParser)
|
|
|
|
|
|
|
|
configure_file(MacroDefinitions.h.in MacroDefinitions.h)
|
|
|
|
|
2023-09-15 13:00:49 +01:00
|
|
|
add_subdirectory(Src)
|
2023-09-29 01:10:15 +01:00
|
|
|
#add_subdirectory(Tests)
|
2023-09-15 13:00:49 +01:00
|
|
|
|
|
|
|
|