package("oatpp") set_homepage("https://oatpp.io/") set_description("Modern Web Framework for C++. High performance, simple API, cross platform, zero dependency.") set_license("Apache-2.0") add_urls("https://github.com/oatpp/oatpp/archive/$(version).tar.gz", "https://github.com/oatpp/oatpp.git") add_versions("1.0.0", "9ba7c75e3ada8ec894ec10beae712e775774a835fd3de89d8c34e17740202619") add_versions("1.2.5", "36276e8b23e68ece1e6093c3f06fc80e3d42a5f4e47cdeef5e7e63f36eeddaad") if is_plat("windows") then add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) end add_deps("cmake") if is_plat("windows") then add_syslinks("ws2_32") end on_load(function (package) package:add("includedirs", path.join("include", "oatpp-" .. package:version_str(), "oatpp")) 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: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/encoding/Base64.hpp" void test(int argc, char** argv) { oatpp::String message = "oat++ web framework"; oatpp::String messageEncoded = "b2F0Kysgd2ViIGZyYW1ld29yaw=="; { oatpp::String encoded = oatpp::encoding::Base64::encode(message); OATPP_ASSERT(encoded->equals(messageEncoded.get())); oatpp::String decoded = oatpp::encoding::Base64::decode(encoded); OATPP_ASSERT(message->equals(decoded.get())); } } ]]}, {configs = {languages = "c++11"}})) end)