From 10b04017c7d2381bc6a866561dcfcb65354f7f2a Mon Sep 17 00:00:00 2001 From: ruki Date: Tue, 30 Nov 2021 16:57:08 +0800 Subject: [PATCH] add nanogui (#720) * add nanogui * Update xmake.lua * Update xmake.lua * Update xmake.lua * Update xmake.lua * Update xmake.lua * Update xmake.lua * Update xmake.lua * Update xmake.lua --- packages/n/nanogui/xmake.lua | 58 ++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 packages/n/nanogui/xmake.lua diff --git a/packages/n/nanogui/xmake.lua b/packages/n/nanogui/xmake.lua new file mode 100644 index 000000000..08246a9ca --- /dev/null +++ b/packages/n/nanogui/xmake.lua @@ -0,0 +1,58 @@ +package("nanogui") + + set_homepage("https://github.com/wjakob/nanogui") + set_description("Minimalistic GUI library for OpenGL") + + add_urls("https://github.com/wjakob/nanogui.git") + add_versions("2019.9.23", "e9ec8a1a9861cf578d9c6e85a6420080aa715c03") + + add_deps("cmake", "eigen", "glfw", "nanovg") + if is_plat("linux") then + add_deps("libxi", "libxcursor", "libxinerama", "libxrandr", "libxxf86vm") + end + + if is_plat("macosx") then + add_frameworks("CoreFoundation", "CoreGraphics", "CoreVideo", "IOKit", "AppKit") + elseif is_plat("windows") then + add_syslinks("comdlg32") + end + + on_install("windows", "macosx", "linux", function (package) + local configs = {"-DNANOGUI_BUILD_EXAMPLE=OFF", "-DNANOGUI_BUILD_PYTHON=OFF"} + table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) + table.insert(configs, "-DNANOGUI_BUILD_SHARED=" .. (package:config("shared") and "ON" or "OFF")) + table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) + io.replace("CMakeLists.txt", '$', "", {plain = true}) + io.replace("CMakeLists.txt", 'ext/nanovg/src/nanovg.c', "", {plain = true}) + io.replace("CMakeLists.txt", 'add_subdirectory("${CMAKE_CURRENT_SOURCE_DIR}/ext/glfw" "ext_build/glfw")', "", {plain = true}) + io.replace("CMakeLists.txt", 'set_target_properties(glfw PROPERTIES EXCLUDE_FROM_ALL 1 EXCLUDE_FROM_DEFAULT_BUILD 1)', "", {plain = true}) + if package:is_plat("linux", "windows") then + io.replace("include/nanogui/opengl.h", '#include ', [[#include +#ifdef _MSC_VER +# include +# define glUniform1i(...) // FIXME: indentify not found +#endif +#include ]], {plain = true}) + end + os.rm("ext/eigen") + local packagedeps = {"eigen", "nanovg", "glfw"} + if package:is_plat("linux") then + table.join2(packagedeps, "libxi", "libxcursor", "libxinerama", "libxrandr", "libxxf86vm") + io.replace("CMakeLists.txt", 'target_link_libraries(nanogui ${NANOGUI_EXTRA_LIBS})', + 'target_link_libraries(nanogui ${NANOGUI_EXTRA_LIBS} nanovg)', {plain = true}) + end + import("package.tools.cmake").install(package, configs, {packagedeps = packagedeps}) + end) + + on_test(function (package) + assert(package:check_cxxsnippets({test = [[ + #include + #include + using namespace std; + using namespace nanogui; + void test() { + Button *b = new Button(NULL/*window*/, "Plain button"); + b->setCallback([] { cout << "pushed!" << endl; }); + } + ]]}, {configs = {languages = "c++11"}})) + end)