Explorar o código

add sqlitecpp (#2099)

* add sqlitecpp

* fix vs_runtime

* fix test c++ standard

* fix shared

* fix link

* fix sqlite3_external

* fix mingw and cross plat
star9029 %!s(int64=2) %!d(string=hai) anos
pai
achega
3131e25406
Modificáronse 1 ficheiros con 74 adicións e 0 borrados
  1. 74 0
      packages/s/sqlitecpp/xmake.lua

+ 74 - 0
packages/s/sqlitecpp/xmake.lua

@@ -0,0 +1,74 @@
+package("sqlitecpp")
+
+    set_homepage("http://srombauts.github.io/SQLiteCpp")
+    set_description("SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.")
+
+    set_urls("https://github.com/SRombauts/SQLiteCpp/archive/refs/tags/$(version).tar.gz",
+             "https://github.com/SRombauts/SQLiteCpp.git")
+
+    add_versions("3.2.1", "70c67d5680c47460f82a7abf8e6b0329bf2fb10795a982a6d8abc06adb42d693")
+
+    if is_plat("android", "wasm") then
+        add_configs("sqlite3_external", { description = "Use external sqlite3 library instead of bundled.", default = false, type = "boolean", readonly = true})
+    elseif is_plat("linux", "macosx", "mingw", "msys", "bsd", "cross") then
+        add_configs("sqlite3_external", { description = "Use external sqlite3 library instead of bundled.", default = true, type = "boolean", readonly = true})
+    else
+        add_configs("sqlite3_external", { description = "Use external sqlite3 library instead of bundled.", default = false, type = "boolean"})
+    end
+    add_configs("column_metadata", { description = "Enable Column::getColumnOriginName(). Require support from sqlite3 library.", default = false, type = "boolean"})
+    add_configs("assert_handled", { description = "Enable the user definition of a assertion_failed() handler.", default = false, type = "boolean"})
+    add_configs("has_codec", { description = "Enable database encryption API. Not available in the public release of SQLite.", default = false, type = "boolean"})
+    add_configs("legacy_struct", { description = "EFallback to forward declaration of legacy struct sqlite3_value (pre SQLite 3.19)", default = false, type = "boolean"})
+    add_configs("ommit_load_extension", { description = "Enable ommit load extension.", default = false, type = "boolean"})
+    add_configs("filesystem", { description = "Disable the support for std::filesystem (C++17)", default = false, type = "boolean"})
+    if is_plat("mingw") then
+        add_configs("stack_protection", { description = "Enable stack protection for MySQL.", default = true, type = "boolean", readonly = true})
+    else
+        add_configs("stack_protection", { description = "Enable stack protection for MySQL.", default = true, type = "boolean"})
+    end
+
+    add_deps("cmake")
+
+    on_load(function (package)
+        if package:config("sqlite3_external") then
+            package:add("deps", "sqlite3")
+        end
+    end)
+
+    on_install(function (package)
+        local configs =
+        {
+            "-DSQLITECPP_BUILD_EXAMPLES=OFF",
+            "-DSQLITECPP_BUILD_TESTS=OFF",
+            "-DSQLITECPP_RUN_CPPLINT=OFF",
+            "-DSQLITECPP_RUN_CPPCHECK=OFF",
+        }
+        table.insert(configs, "-DSQLITECPP_INTERNAL_SQLITE=" .. (package:config("sqlite3_external") and "OFF" or "ON"))
+        table.insert(configs, "-DSQLITE_ENABLE_COLUMN_METADATA=" .. (package:config("column_metadata") and "ON" or "OFF"))
+        table.insert(configs, "-DSQLITE_ENABLE_ASSERT_HANDLER=" .. (package:config("assert_handled") and "ON" or "OFF"))
+        table.insert(configs, "-DSQLITE_HAS_CODEC=" .. (package:config("has_codec") and "ON" or "OFF"))
+        table.insert(configs, "-DSQLITE_USE_LEGACY_STRUCT=" .. (package:config("legacy_struct") and "ON" or "OFF"))
+        table.insert(configs, "-DSQLITE_OMMIT_LOAD_EXTENSION=" .. (package:config("ommit_load_extension") and "ON" or "OFF"))
+        table.insert(configs, "-DSQLITECPP_DISABLE_STD_FILESYSTEM=" .. (package:config("filesystem") and "ON" or "OFF"))
+        table.insert(configs, "-DSQLITECPP_USE_STACK_PROTECTION=" .. (package:config("stack_protection") and "ON" or "OFF"))
+        table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
+        if is_plat("windows") then
+            if package:config("shared") then
+                if package:version():gt("3.2.1") then
+                    table.insert(configs, "-DBUILD_SHARED_LIBS=ON")
+                else
+                    table.insert(configs, "-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON")
+                end
+            end
+            table.insert(configs, "-DSQLITECPP_USE_STATIC_RUNTIME=" .. (package:config("vs_runtime"):startswith("MT") and "ON" or "OFF"))
+        end
+        import("package.tools.cmake").install(package, configs)
+    end)
+
+    on_test(function (package)
+        assert(package:check_cxxsnippets({test = [[
+            void test() {
+                SQLite::Database db("example.db3");
+            }
+        ]]}, {configs = {languages = "c++11"}, includes = {"SQLiteCpp/Database.h"}}))
+    end)