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.1 KiB
24 lines
1.1 KiB
package("wil") |
|
set_kind("library", {headeronly = true}) |
|
set_homepage("https://github.com/microsoft/wil") |
|
set_description("The Windows Implementation Libraries (WIL) is a header-only C++ library created to make life easier for developers on Windows through readable type-safe C++ interfaces for common Windows coding patterns.") |
|
set_license("MIT") |
|
|
|
add_urls("https://github.com/microsoft/wil.git") |
|
add_versions("2022.09.16", "5f4caba4e7a9017816e47becdd918fcc872039ba") |
|
add_versions("2023.12.16", "572b8728926eb9c8fc55572bb4b84bb92dabd79d") |
|
add_versions("2024.08.03", "f0c6a81c0c9a4b23b6801f40554b8bec425a83b4") |
|
|
|
on_install("windows", function (package) |
|
os.cp("include", package:installdir()) |
|
end) |
|
|
|
on_test(function (package) |
|
assert(package:check_cxxsnippets({test = [[ |
|
#include <windows.h> |
|
#include <wil/win32_helpers.h> |
|
void test() { |
|
auto foo = wil::GetModuleInstanceHandle(); |
|
} |
|
]]}, {configs = {languages = "c++17"}, includes = {"windows.h", "wil/win32_helpers.h"}})) |
|
end)
|
|
|