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
|
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
|
|
|
|
)
|
|
|
|
|
|
|
|
########################################
|
|
|
|
|