Skip to content

Commit

Permalink
yomm2: add package (#2381)
Browse files Browse the repository at this point in the history
* add package

* disable plat
  • Loading branch information
star-hengxing authored Jul 30, 2023
1 parent 7dddd61 commit 246d2c2
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions packages/y/yomm2/xmake.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
package("yomm2")
set_homepage("https://github.com/jll63/yomm2")
set_description("Fast, orthogonal, open multi-methods. Solve the Expression Problem in C++17.")
set_license("BSL-1.0")

add_urls("https://github.com/jll63/yomm2/archive/refs/tags/$(version).tar.gz",
"https://github.com/jll63/yomm2.git")

add_versions("v1.4.0", "3f1f3a2b6fa5250405986b6cc4dff82299f866e2c6c2db75c7c3f38ecb91360f")

add_deps("cmake", "boost")

on_load(function (package)
if not package:config("shared") then
package:set("kind", "library", {headeronly = true})
end
end)

on_install("windows", "linux", "macosx", "bsd", "mingw", "cross", function (package)
local configs =
{
"-DYOMM2_ENABLE_TESTS=OFF",
"-DYOMM2_ENABLE_EXAMPLES=OFF",
"-DYOMM2_ENABLE_DOC=OFF",
"-DYOMM2_ENABLE_BENCHMARKS=OFF",
"-DYOMM2_ENABLE_TRACE=OFF",
}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DYOMM2_SHARED=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DYOMM2_DEBUG_MACROS=" .. (package:is_debug() and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
end)

on_test(function (package)
assert(package:check_cxxsnippets({test = [[
#include <yorel/yomm2/keywords.hpp>
void test() {
yorel::yomm2::update();
}
]]}, {configs = {languages = "c++17"}}))
end)

0 comments on commit 246d2c2

Please sign in to comment.