We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fc1974 commit 99930c1Copy full SHA for 99930c1
plugins/CMakeLists.txt
@@ -4,6 +4,12 @@ add_library(plugin_sdbot-webui SHARED
4
./plugin_sdbot-webui.cpp
5
)
6
7
+set_target_properties(plugin_sdbot-webui PROPERTIES
8
+ C_VISIBILITY_PRESET hidden
9
+ POSITION_INDEPENDENT_CODE ON
10
+)
11
+target_compile_definitions(plugin_sdbot-webui PUBLIC ENTT_API_IMPORT)
12
+
13
target_link_libraries(plugin_sdbot-webui PUBLIC
14
solanaceae_plugin
15
solanaceae_sdbot-webui
plugins/plugin_sdbot-webui.cpp
@@ -4,6 +4,9 @@
#include <solanaceae/util/config_model.hpp>
+#include <entt/entt.hpp>
+#include <entt/fwd.hpp>
#include <memory>
#include <iostream>
0 commit comments