package("ftxui") set_homepage("https://github.com/ArthurSonzogni/FTXUI") set_description(":computer: C++ Functional Terminal User Interface. :heart:") set_license("MIT") add_urls("https://github.com/ArthurSonzogni/FTXUI/archive/refs/tags/$(version).tar.gz", "https://github.com/ArthurSonzogni/FTXUI.git") add_versions("v5.0.0", "a2991cb222c944aee14397965d9f6b050245da849d8c5da7c72d112de2786b5b") add_versions("v4.1.1", "9009d093e48b3189487d67fc3e375a57c7b354c0e43fc554ad31bec74a4bc2dd") add_versions("v3.0.0", "a8f2539ab95caafb21b0c534e8dfb0aeea4e658688797bb9e5539729d9258cc1") add_deps("cmake") if is_plat("windows") then add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true}) elseif is_plat("linux", "bsd") then add_syslinks("pthread") end add_links("ftxui-component", "ftxui-dom", "ftxui-screen") on_install("linux", "windows", "macosx", "bsd", "mingw", "cross", function (package) local configs = {"-DFTXUI_BUILD_DOCS=OFF", "-DFTXUI_BUILD_EXAMPLES=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")) import("package.tools.cmake").install(package, configs) end) on_test(function (package) assert(package:check_cxxsnippets({test = [[ #include #include #include "ftxui/component/captured_mouse.hpp" #include "ftxui/component/component.hpp" #include "ftxui/component/component_base.hpp" #include "ftxui/component/screen_interactive.hpp" #include "ftxui/dom/elements.hpp" using namespace ftxui; void test() { int value = 50; auto buttons = Container::Horizontal({ Button("Decrease", [&] { value--; }), Button("Increase", [&] { value++; }), }); auto component = Renderer(buttons, [&] { return vbox({ text("value = " + std::to_string(value)), separator(), gauge(value * 0.01f), separator(), buttons->Render(), }) | border; }); auto screen = ScreenInteractive::FitComponent(); screen.Loop(component); } ]]}, {configs = {languages = "c++17"}})) end)