solanaceae_factorio/src/CMakeLists.txt

23 lines
478 B
CMake
Raw Normal View History

2024-06-10 20:11:25 +02:00
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
project(solanaceae)
add_library(solanaceae_factorio
2024-06-10 21:37:31 +02:00
./log_parse.hpp
./log_parse.cpp
./factorio_log_parser.hpp
./factorio_log_parser.cpp
2024-06-10 20:11:25 +02:00
./factorio.hpp
./factorio.cpp
)
target_include_directories(solanaceae_factorio PUBLIC .)
target_compile_features(solanaceae_factorio PUBLIC cxx_std_17)
target_link_libraries(solanaceae_factorio PUBLIC
solanaceae_message3
2024-06-10 22:27:19 +02:00
filewatch
2024-06-10 20:11:25 +02:00
)
########################################