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.
 
 
 

44 lines
2.0 KiB

package("oatpp-openssl")
set_homepage("https://oatpp.io/")
set_description("It provides secure server and client connection providers for oatpp applications.")
set_license("Apache-2.0")
add_urls("https://github.com/oatpp/oatpp-openssl/archive/5925e8ba856fa71cda8937c4cb357508d4fdb3fb.tar.gz",
"https://github.com/oatpp/oatpp-openssl.git")
add_versions("1.3.0", "540ab736ca8f7b8a89c23ad51655e038b59c6df8a08a60b95125843c9643a405")
if is_plat("windows") then
add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
end
add_deps("cmake")
add_deps("oatpp")
add_deps("openssl")
on_load(function (package)
package:add("includedirs", path.join("include", "oatpp-" .. package:version_str(), "oatpp-openssl"))
package:add("linkdirs", path.join("lib", "oatpp-" .. package:version_str()))
end)
on_install("linux", "macosx", "windows|x64", function (package)
local configs = {"-DOATPP_BUILD_TESTS=OFF"}
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
if package:is_plat("windows") then
table.insert(configs, "-DOATPP_MSVC_LINK_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 = [[
#include "oatpp-openssl/server/ConnectionProvider.hpp"
#include "oatpp-openssl/Config.hpp"
#include "oatpp-openssl/configurer/TrustStore.hpp"
void test() {
const char* trust = "path/to/truststore";
auto config = oatpp::openssl::Config::createDefaultClientConfigShared();
}
]]}, {configs = {languages = "c++11"}}))
end)