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.
48 lines
2.1 KiB
48 lines
2.1 KiB
package("clip") |
|
set_homepage("https://github.com/dacap/clip") |
|
set_description("Library to copy/retrieve content to/from the clipboard/pasteboard.") |
|
set_license("MIT") |
|
|
|
set_urls("https://github.com/dacap/clip/archive/refs/tags/v$(version).zip") |
|
add_versions("1.9", "905615eb1ceef15e96468891ad85b7aa6836bcda690006d61fa061ca029b2060") |
|
add_versions("1.8", "9df8728c9ce7c3afcfc9a0c6718e064319f0cdffb927243ac1ca3be591578d00") |
|
add_versions("1.5", "4ed7f54184c27c79a8f2382ba747dce11aeb4552017abf5588587369a6caeb6b") |
|
|
|
add_deps("cmake", "libpng") |
|
if is_plat("linux") then |
|
add_deps("libxcb") |
|
elseif is_plat("windows") or is_plat("mingw") then |
|
add_syslinks("Shlwapi", "Ole32", "User32") |
|
end |
|
if is_plat("mingw") then |
|
add_syslinks("Windowscodecs") |
|
end |
|
|
|
add_includedirs("include") |
|
|
|
on_install("linux", "windows", "mingw@windows,msys", "macos", function(package) |
|
local configs = {} |
|
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, "-DCLIP_EXAMPLES=OFF") |
|
table.insert(configs, "-DCLIP_TESTS=OFF") |
|
if package:config("shared") and package:is_plat("windows") then |
|
table.insert(configs, "-DCMAKE_WINDOWS_EXPORT_ALL_SYMBOLS=ON") |
|
end |
|
import("package.tools.cmake").install(package, configs, { buildir="build" }) |
|
os.cp("clip.h", package:installdir("include/clip")) |
|
os.trycp("build/*.a", package:installdir("lib")) |
|
os.trycp("build/*.dylib", package:installdir("lib")) |
|
os.trycp("build/*.so", package:installdir("lib")) |
|
os.trycp("build/*.lib", package:installdir("lib")) |
|
os.trycp("build/*.dll", package:installdir("bin")) |
|
end) |
|
|
|
on_test(function(package) |
|
assert(package:check_cxxsnippets({ test = [[ |
|
#include <clip/clip.h> |
|
#include <string> |
|
void test() { clip::set_text("foo"); } |
|
]]} |
|
)) |
|
end)
|
|
|