solanaceae_zox/plugins/CMakeLists.txt

30 lines
618 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.14...3.24 FATAL_ERROR)
2024-05-28 10:13:53 +02:00
add_library(plugin_zox_ngc MODULE
./plugin_zox_ngc.cpp
)
2024-05-19 11:44:37 +02:00
set_target_properties(plugin_zox_ngc PROPERTIES
C_VISIBILITY_PRESET hidden
)
target_link_libraries(plugin_zox_ngc PUBLIC
solanaceae_plugin
solanaceae_zox
)
########################################
2024-05-28 10:13:53 +02:00
add_library(plugin_zox_ngc_hs MODULE
./plugin_zox_ngc_hs.cpp
)
2024-05-19 11:44:37 +02:00
set_target_properties(plugin_zox_ngc_hs PROPERTIES
C_VISIBILITY_PRESET hidden
)
target_compile_definitions(plugin_zox_ngc_hs PUBLIC ENTT_API_IMPORT)
target_link_libraries(plugin_zox_ngc_hs PUBLIC
solanaceae_plugin
solanaceae_zox
)