mirror of
https://github.com/geode-sdk/geode.git
synced 2024-11-23 07:57:51 -05:00
12 lines
No EOL
344 B
CMake
12 lines
No EOL
344 B
CMake
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
|
|
project(Broma LANGUAGES C CXX)
|
|
|
|
add_library(Broma ${CMAKE_CURRENT_SOURCE_DIR}/src/broma.cpp)
|
|
|
|
target_compile_features(Broma PRIVATE cxx_std_17)
|
|
|
|
target_include_directories(Broma PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
|
|
add_subdirectory(PEGTL-3.2.7)
|
|
|
|
target_link_libraries(Broma taocpp::pegtl) |