|
@@ -1,5 +1,4 @@
|
|
|
package("cinatra")
|
|
|
-
|
|
|
set_kind("library", {headeronly = true})
|
|
|
set_homepage("https://github.com/qicosmos/cinatra")
|
|
|
set_description("modern c++(c++20), cross-platform, header-only, easy to use http framework")
|
|
@@ -8,10 +7,16 @@ package("cinatra")
|
|
|
add_urls("https://github.com/qicosmos/cinatra/archive/refs/tags/v$(version).tar.gz",
|
|
|
"https://github.com/qicosmos/cinatra.git")
|
|
|
|
|
|
+ add_versions("0.8.9", "007dc38aceedf42d03a9c05dc9aa6d2f303456ae7ce1100800df7a565b83b510")
|
|
|
add_versions("0.8.0", "4e14d5206408eccb43b3e810d3a1fe228fbc7496ded8a16b041ed12cbcce4479")
|
|
|
|
|
|
+ add_patches("0.8.9", "patches/0.8.9/windows-move.patch", "c913ed0e9044ffc0ced40516245ec0d55262f8eabd30244d9911c3f0427a60f5")
|
|
|
+
|
|
|
add_configs("ssl", {description = "Enable SSL", default = false, type = "boolean"})
|
|
|
add_configs("gzip", {description = "Enable GZIP", default = false, type = "boolean"})
|
|
|
+ add_configs("sse42", {description = "Enable sse4.2 instruction set", default = false, type = "boolean"})
|
|
|
+ add_configs("avx2", {description = "Enable avx2 instruction set", default = false, type = "boolean"})
|
|
|
+ add_configs("aarch64", {description = "Enable aarch64 instruction set (only arm)", default = false, type = "boolean"})
|
|
|
|
|
|
add_deps("asio")
|
|
|
add_deps("async_simple", {configs = {aio = false}})
|
|
@@ -26,6 +31,18 @@ package("cinatra")
|
|
|
package:add("deps", "zlib")
|
|
|
package:add("defines", "CINATRA_ENABLE_GZIP")
|
|
|
end
|
|
|
+
|
|
|
+ local configdeps = {
|
|
|
+ sse42 = "CINATRA_SSE",
|
|
|
+ avx2 = "CINATRA_AVX2",
|
|
|
+ aarch64 = "CINATRA_ARM_OPT"
|
|
|
+ }
|
|
|
+
|
|
|
+ for name, item in pairs(configdeps) do
|
|
|
+ if package:config(name) then
|
|
|
+ package:add("defines", item)
|
|
|
+ end
|
|
|
+ end
|
|
|
end)
|
|
|
|
|
|
on_install("windows", "linux", "macosx", function (package)
|
|
@@ -33,16 +50,5 @@ package("cinatra")
|
|
|
end)
|
|
|
|
|
|
on_test(function (package)
|
|
|
- assert(package:check_cxxsnippets({test = [[
|
|
|
- #include <cinatra.hpp>
|
|
|
- using namespace cinatra;
|
|
|
- void test() {
|
|
|
- http_server server(std::thread::hardware_concurrency());
|
|
|
- server.listen("0.0.0.0", "8080");
|
|
|
- server.set_http_handler<GET, POST>("/", [](request& req, response& res) {
|
|
|
- res.set_status_and_content(status_type::ok, "hello world");
|
|
|
- });
|
|
|
- server.run();
|
|
|
- }
|
|
|
- ]]}, {configs = {languages = "c++20"}}))
|
|
|
+ assert(package:has_cxxincludes("cinatra.hpp", {configs = {languages = "c++20"}}))
|
|
|
end)
|