diff --git a/packages/e/exprtk/xmake.lua b/packages/e/exprtk/xmake.lua index a97fa3d40..c2efa7d14 100644 --- a/packages/e/exprtk/xmake.lua +++ b/packages/e/exprtk/xmake.lua @@ -6,14 +6,15 @@ package("exprtk") set_license("MIT") add_urls("https://github.com/ArashPartow/exprtk.git") - add_versions("2021.06.06", "93a9f44f99b910bfe07cd1e933371e83cea3841c") + add_versions("2022.01.01", "f46bffcd6966d38a09023fb37ba9335214c9b959") if is_plat("windows") then add_cxxflags("/bigobj") elseif is_plat("mingw") then add_cxxflags("-Wa,-mbig-obj") end - on_install(function (package) + + on_install("windows", "linux", "macosx", "bsd", "iphoneos", "android", "wasm", "cross", function (package) os.cp("exprtk.hpp", package:installdir("include")) end)