package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
370 B
12 lines
370 B
3 years ago
|
diff --git a/xmake.lua b/xmake.lua
|
||
|
index dfad2e0..090d2b1 100644
|
||
|
--- a/xmake.lua
|
||
|
+++ b/xmake.lua
|
||
|
@@ -16,3 +16,6 @@ target("johnny-engine")
|
||
|
add_files("src/*.cpp")
|
||
|
add_headerfiles("include/*.h")
|
||
|
add_includedirs("include")
|
||
|
+ if is_plat("windows") and is_kind("shared") then
|
||
|
+ add_rules("utils.symbols.export_all", {export_classes = true})
|
||
|
+ end
|