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.
 
 
 

61 lines
2.2 KiB

package("ormpp")
set_kind("library", {headeronly = true})
set_homepage("https://github.com/qicosmos/ormpp")
set_description("modern C++ ORM, C++17, support mysql, postgresql,sqlite")
set_license("Apache-2.0")
set_urls("https://github.com/qicosmos/ormpp/archive/refs/tags/$(version).tar.gz",
"https://github.com/qicosmos/ormpp.git")
add_versions("0.1.3", "671f2f19965d630d7147f94dd12f4212a9cce58c5455f892f321f2243acb8ea4")
add_versions("v0.1.2", "990e88eb176d996cdbbbdfa3e1522b48d135d809f14094771f8d6f02e94573c4")
add_versions("v0.1.1", "a3c93599950a4c5822ebd0750ac7964c59c9b3f84f638525f01578bac6d898c2")
add_configs("mysql", {description = "Using mysql", default = false, type = "boolean"})
add_configs("postgresql", {description = "Using postgresql", default = false, type = "boolean"})
add_configs("sqlite3", {description = "Using sqlite3", default = false, type = "boolean"})
add_deps("frozen", "iguana")
on_load(function(package)
local configs = {
mysql = "ORMPP_ENABLE_MYSQL",
postgresql = "ORMPP_ENABLE_PG",
sqlite3 = "ORMPP_ENABLE_SQLITE3"
}
for config, define in pairs(configs) do
if package:config(config) then
package:add("deps", config)
package:add("defines", define)
end
end
end)
on_install(function (package)
if package:version():ge("0.1.2") then
os.vcp("ormpp/*", package:installdir("include"))
else
os.vcp("include/*", package:installdir("include"))
end
end)
on_test(function (package)
local languages = "c++17"
if package:is_plat("windows") and package:is_arch("arm.*") then
languages = "c++20"
end
assert(package:check_cxxsnippets({test = [[
#include <algorithm>
#include <dbng.hpp>
using namespace ormpp;
struct student {
std::string name;
int age;
int id;
};
REGISTER_AUTO_KEY(student, id)
REFLECTION_WITH_NAME(student, "t_student", id, name, age)
]]}, {configs = {languages = languages}}))
end)