From 343c911c088a7b88b05f52449e230fa80c5808ad Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 28 Dec 2021 14:17:03 +0800 Subject: [PATCH] Create xmake.lua (#801) --- packages/s/sqlpp11/xmake.lua | 48 ++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 packages/s/sqlpp11/xmake.lua diff --git a/packages/s/sqlpp11/xmake.lua b/packages/s/sqlpp11/xmake.lua new file mode 100644 index 000000000..2ece67293 --- /dev/null +++ b/packages/s/sqlpp11/xmake.lua @@ -0,0 +1,48 @@ +package("sqlpp11") + set_kind("library", {headeronly = true}) + set_homepage("https://github.com/rbock/sqlpp11") + set_description("A type safe SQL template library for C++") + + add_urls("https://github.com/rbock/sqlpp11/archive/refs/tags/$(version).tar.gz", + "https://github.com/rbock/sqlpp11.git") + add_versions("0.61", "d5a95e28ae93930f7701f517b1342ac14bcf33a9b1c5b5f0dff6aea5e315bb50") + + add_deps("cmake") + + add_configs("sqlite3_connector", { description = "Enable SQlite3 connector.", default = false, type = "boolean"}) + add_configs("sqlcipher_connector", { description = "Enable SQlite3 connector with SQLCipher.", default = false, type = "boolean"}) + add_configs("mariadb_connector", { description = "Enable MariaDB connector.", default = false, type = "boolean"}) + add_configs("postgresql_connector", { description = "Enable PostgreSQL connector.", default = false, type = "boolean"}) + add_configs("mysql_connector", { description = "Enable MySQL connector.", default = false, type = "boolean"}) + + on_install("windows", "linux", "macosx", function (package) + local configs = {"-DBUILD_TESTING=OFF"} + table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) + table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) + if package:config("sqlite3_connector") then + table.insert(configs, "-DBUILD_SQLITE3_CONNECTOR=ON") + end + if package:config("sqlcipher_connector") then + table.insert(configs, "-DBUILD_SQLCIPHER_CONNECTOR=ON") + end + if package:config("mariadb_connector") then + table.insert(configs, "-DBUILD_MARIADB_CONNECTOR=ON") + end + -- TODO we need add PostgreSQL deps + if package:config("postgresql_connector") then + table.insert(configs, "-DBUILD_POSTGRESQL_CONNECTOR=ON") + end + -- TODO we need add MySQL deps + if package:config("mysql_connector") then + table.insert(configs, "-DBUILD_MYSQL_CONNECTOR=ON") + end + import("package.tools.cmake").install(package, configs) + end) + + on_test(function (package) + assert(package:check_cxxsnippets({test = [[ + void test() { + select(sqlpp::value(false).as(sqlpp::alias::a)); + } + ]]}, {configs = {languages = "c++14"}, includes = {"sqlpp11/sqlpp11.h"}})) + end)