2024-04-14 13:12:25 +02:00
|
|
|
cmake_minimum_required(VERSION 3.9...3.24 FATAL_ERROR)
|
|
|
|
|
|
|
|
########################################
|
|
|
|
|
2024-05-28 10:11:51 +02:00
|
|
|
add_library(plugin_mfs_wip MODULE
|
2024-04-14 13:12:25 +02:00
|
|
|
./plugin_mfs_wip.cpp
|
|
|
|
)
|
|
|
|
target_compile_features(plugin_mfs_wip PUBLIC cxx_std_17)
|
2024-05-19 11:42:34 +02:00
|
|
|
set_target_properties(plugin_mfs_wip PROPERTIES
|
|
|
|
C_VISIBILITY_PRESET hidden
|
|
|
|
)
|
|
|
|
target_compile_definitions(plugin_mfs_wip PUBLIC ENTT_API_IMPORT)
|
2024-04-14 13:12:25 +02:00
|
|
|
target_link_libraries(plugin_mfs_wip PUBLIC
|
|
|
|
solanaceae_plugin
|
|
|
|
solanaceae_message_fragment_store
|
|
|
|
solanaceae_object_store_backend_filesystem
|
|
|
|
)
|
|
|
|
|