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 a757e45 commit b9d37f3Copy full SHA for b9d37f3
packages/d/dynareadout/port/xmake.lua
@@ -37,6 +37,9 @@ target("dynareadout")
37
target_end()
38
39
if get_config("build_cpp") or get_config("build_python") then
40
+ if is_plat("macosx") then
41
+ add_requires("boost", {configs = {filesystem = true}})
42
+ end
43
target("dynareadout_cpp")
44
set_kind("$(kind)")
45
set_languages("cxx17")
@@ -50,6 +53,9 @@ if get_config("build_cpp") or get_config("build_python") then
50
53
if is_kind("shared") then
51
54
add_rules("utils.symbols.export_all", {export_classes = true})
52
55
end
56
57
+ add_packages("boost")
58
59
60
61
0 commit comments