summaryrefslogtreecommitdiff
path: root/third_party/packages/n/nativefiledialog-extended/xmake.lua
blob: 2086e7f84bf6e2614b6c39b99d613d8b647ff415 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package("nativefiledialog-extended")

    set_homepage("https://github.com/btzy/nativefiledialog-extended")
    set_description("Cross platform (Windows, Mac, Linux) native file dialog library with C and C++ bindings, based on mlabbe/nativefiledialog.")

    add_urls("https://github.com/btzy/nativefiledialog-extended/archive/refs/tags/$(version).zip",
             "https://github.com/btzy/nativefiledialog-extended.git")
    add_versions("v1.1.1", "7003001d36235db2c2062cd992e61c59c77a5ad3ca5e5ed8175e56502513886e")
    add_versions("v1.1.0", "5827d17b6bddc8881406013f419c534e8459b38f34c2f266d9c1da8a7a7464bc")
    add_versions("v1.0.2", "1d2c4c50fb1e3ad8caa5ad9c3df54725c3a49a6d4a21d773a20b93ebeb5780f1")

    add_configs("portal", {description = "Use xdg-desktop-portal instead of GTK.", default = true, type = "boolean"})
    if is_plat("windows") then
        add_configs("shared", {description = "Build shared library.", default = false, type = "boolean", readonly = true})
    end

    if is_plat("windows", "mingw") then
        add_syslinks("shell32", "ole32")
    elseif is_plat("macosx") then
        add_frameworks("AppKit", "UniformTypeIdentifiers")
    end
    on_load("linux", function (package)
        if package:config("portal") then
            package:add("deps", "dbus")
        else
            package:add("deps", "gtk+3")
        end
    end)

    on_install("windows", "mingw", function (package)
        io.writefile("xmake.lua", [[
            add_rules("mode.debug", "mode.release")
            add_syslinks("shell32", "ole32")
            add_includedirs("src/include")
            target("nativefiledialog-extended")
                set_kind("static")
                add_files("src/nfd_win.cpp")
                add_headerfiles("src/include/nfd.h")
                add_headerfiles("src/include/nfd.hpp")
        ]])
        import("package.tools.xmake").install(package)
    end)

    on_install("macosx", "linux", function (package)
        local configs = {"-DNFD_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"))
        table.insert(configs, "-DNFD_PORTAL=" .. (package:config("portal") and "ON" or "OFF"))
        import("package.tools.cmake").install(package, configs)
    end)

    on_test(function (package)
        assert(package:check_cxxsnippets({test = [[
            void test() {
                NFD_Init();
                nfdchar_t *outPath = NULL;
                nfdfilteritem_t filterItem[2] = {{"Source code", "c,cpp,cc"}, {"Headers", "h,hpp"}};
                nfdresult_t result = NFD_OpenDialog(&outPath, filterItem, 2, NULL);
                NFD_Quit();
            }
        ]]}, {includes = "nfd.h"}))
    end)