# Player event log: the per-empire turn-event list every simulation subsystem posts into,
# plus the five events the research path raises. Pure; depends on nothing but the standard
# library, so the shim and the host tests can both link it.
add_library(sots_game_events STATIC
  event_log.cpp
  research_events.cpp)
target_include_directories(sots_game_events PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/../..)
target_compile_features(sots_game_events PUBLIC cxx_std_17)
if(NOT MSVC)
  target_compile_options(sots_game_events PRIVATE -Wall -Wextra)
endif()
