2024-05-17 22:18:41 +02:00
|
|
|
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
|
|
|
|
|
2024-06-21 13:20:24 +02:00
|
|
|
add_library(plugin_message_n10n MODULE
|
2024-05-17 22:18:41 +02:00
|
|
|
./plugin_message_n10n.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
target_link_libraries(plugin_message_n10n PUBLIC
|
|
|
|
solanaceae_plugin
|
|
|
|
solanaceae_message_n10n
|
|
|
|
)
|
|
|
|
|
2024-06-21 13:20:24 +02:00
|
|
|
set_target_properties(plugin_message_n10n PROPERTIES
|
|
|
|
C_VISIBILITY_PRESET hidden
|
|
|
|
)
|
2024-05-18 12:43:50 +02:00
|
|
|
# probably not enough
|
|
|
|
target_compile_definitions(plugin_message_n10n PUBLIC ENTT_API_IMPORT)
|
|
|
|
|