|
|
|
package("expresscpp")
|
|
|
|
|
|
|
|
set_homepage("https://github.com/expresscpp/expresscpp.git")
|
|
|
|
set_description("Fast, unopinionated, minimalist web framework for C++ Perfect for building REST APIs.")
|
|
|
|
set_license("MIT")
|
|
|
|
|
|
|
|
set_urls("https://github.com/expresscpp/expresscpp/archive/$(version).tar.gz",
|
|
|
|
"https://github.com/expresscpp/expresscpp.git")
|
|
|
|
|
|
|
|
add_versions("v0.20.0", "55f10531e4ba162ec768cf9c745ccc7b5a0930c7ad9974b268ad40246276baa8")
|
|
|
|
|
|
|
|
add_deps("cmake")
|
|
|
|
add_deps("nlohmann_json", "fmt", {configs = {cmake = true}})
|
|
|
|
add_deps("boost", {configs = {system = true}})
|
|
|
|
|
|
|
|
if is_plat("linux") then
|
|
|
|
add_syslinks("pthread")
|
|
|
|
end
|
|
|
|
|
|
|
|
on_install("linux", "macosx", function (package)
|
|
|
|
local configs = {}
|
|
|
|
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
|
|
|
|
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
|
|
|
|
import("package.tools.cmake").install(package, configs)
|
|
|
|
end)
|
|
|
|
|
|
|
|
on_test(function (package)
|
|
|
|
assert(package:check_cxxsnippets({test = [[
|
|
|
|
#include "expresscpp/expresscpp.hpp"
|
|
|
|
void test() {
|
|
|
|
auto expresscpp = std::make_shared<expresscpp::ExpressCpp>();
|
|
|
|
expresscpp->Get("/", [](auto /*req*/, auto res) { res->Send("hello world!"); });
|
|
|
|
constexpr uint16_t port = 3000u;
|
|
|
|
expresscpp->Listen(port,[=](auto /*ec*/) { std::cout << "Listening on port " << port << std::endl; }).Run();
|
|
|
|
}
|
|
|
|
]]}, {configs = {languages = "c++17"}}))
|
|
|
|
end)
|