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.
24 lines
1.0 KiB
24 lines
1.0 KiB
package("winreg") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/GiovanniDicanio/WinReg") |
|
set_description("Convenient high-level C++ wrapper around the Windows Registry API") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/GiovanniDicanio/WinReg/archive/refs/tags/$(version).tar.gz", |
|
"https://github.com/GiovanniDicanio/WinReg.git") |
|
|
|
add_versions("v6.2.0", "9dc1b287fb8c765a35791bf0deea0da81e52a969827bc2d8777f54f26ade588d") |
|
add_versions("v6.1.0", "d4118ccfd4f4edee29e0f6b3706979791ad537278e2f74818c150bb66f8fcc53") |
|
|
|
on_install("windows", "mingw", "msys", function (package) |
|
os.cp("WinReg/WinReg.hpp", package:installdir("include/WinReg")) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <WinReg/WinReg.hpp> |
|
void test() { |
|
winreg::RegKey key{ HKEY_CURRENT_USER, L"SOFTWARE\\SomeKey" }; |
|
} |
|
]]}, {configs = {languages = "c++17"}})) |
|
end)
|
|
|