plugin symbol visibility

This commit is contained in:
Green Sky 2024-05-19 11:44:01 +02:00
parent df2e1d6d42
commit ff52f15566
No known key found for this signature in database
3 changed files with 10 additions and 1 deletions

View File

@ -6,7 +6,7 @@ if (NOT TARGET imgui)
message("II using FetchContent imgui") message("II using FetchContent imgui")
FetchContent_Declare(imgui FetchContent_Declare(imgui
GIT_REPOSITORY https://github.com/ocornut/imgui.git GIT_REPOSITORY https://github.com/ocornut/imgui.git
GIT_TAG d6cb3c9 # v1.90.1 GIT_TAG 6ccc561 # v1.90.6
EXCLUDE_FROM_ALL EXCLUDE_FROM_ALL
) )

View File

@ -4,6 +4,12 @@ add_library(plugin_toxic_games SHARED
./plugin_toxic_games.cpp ./plugin_toxic_games.cpp
) )
set_target_properties(plugin_toxic_games PROPERTIES
C_VISIBILITY_PRESET hidden
POSITION_INDEPENDENT_CODE ON
)
target_compile_definitions(plugin_toxic_games PUBLIC ENTT_API_IMPORT)
target_link_libraries(plugin_toxic_games PUBLIC target_link_libraries(plugin_toxic_games PUBLIC
solanaceae_plugin solanaceae_plugin
solanaceae_toxic_games solanaceae_toxic_games

View File

@ -3,6 +3,9 @@
#include <solanaceae/toxic_games/toxic_games.hpp> #include <solanaceae/toxic_games/toxic_games.hpp>
#include <solanaceae/toxcore/tox_interface.hpp> #include <solanaceae/toxcore/tox_interface.hpp>
#include <entt/entt.hpp>
#include <entt/fwd.hpp>
#include <memory> #include <memory>
#include <limits> #include <limits>
#include <iostream> #include <iostream>