solanaceae_toxic_games/plugins/CMakeLists.txt

17 lines
364 B
CMake
Raw Normal View History

2023-11-25 19:41:55 +01:00
cmake_minimum_required(VERSION 3.24 FATAL_ERROR)
2024-05-28 17:31:36 +02:00
add_library(plugin_toxic_games MODULE
2023-11-25 20:43:00 +01:00
./plugin_toxic_games.cpp
)
2024-05-19 11:44:01 +02:00
set_target_properties(plugin_toxic_games PROPERTIES
C_VISIBILITY_PRESET hidden
)
target_compile_definitions(plugin_toxic_games PUBLIC ENTT_API_IMPORT)
2023-11-25 20:43:00 +01:00
target_link_libraries(plugin_toxic_games PUBLIC
solanaceae_plugin
solanaceae_toxic_games
)