Files
solanaceae_toxic_games/plugins/CMakeLists.txt
2026-01-06 18:12:23 +01:00

17 lines
371 B
CMake

cmake_minimum_required(VERSION 3.18...3.24 FATAL_ERROR)
add_library(plugin_toxic_games MODULE
./plugin_toxic_games.cpp
)
set_target_properties(plugin_toxic_games PROPERTIES
C_VISIBILITY_PRESET hidden
)
target_compile_definitions(plugin_toxic_games PUBLIC ENTT_API_IMPORT)
target_link_libraries(plugin_toxic_games PUBLIC
solanaceae_plugin
solanaceae_toxic_games
)