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 5b05c52 commit c022919Copy full SHA for c022919
packages/d/dynareadout/port/xmake.lua
@@ -14,7 +14,7 @@ target("dynareadout")
14
remove_files("src/profiling.c")
15
end
16
add_headerfiles("src/*.h")
17
- if is_kind("shared") then
+ if target:kind() == "shared" then
18
add_rules("utils.symbols.export_all")
19
20
target_end()
@@ -30,10 +30,10 @@ if has_config("build_cpp", "build_python") then
30
add_includedirs("src")
31
add_files("src/cpp/*.cpp")
32
add_headerfiles("src/cpp/*.hpp")
33
+ if target:kind() =="shared" then
34
add_rules("utils.symbols.export_all", {export_classes = true})
35
36
- if is_plat("macosx") then
+ if target:is_plat("macosx") then
37
add_packages("boost")
38
39
0 commit comments