xmake.lua 1.1 KB

123456789101112131415161718192021222324
  1. package("wil")
  2. set_kind("library", {headeronly = true})
  3. set_homepage("https://github.com/microsoft/wil")
  4. 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.")
  5. set_license("MIT")
  6. add_urls("https://github.com/microsoft/wil.git")
  7. add_versions("2022.09.16", "5f4caba4e7a9017816e47becdd918fcc872039ba")
  8. add_versions("2023.12.16", "572b8728926eb9c8fc55572bb4b84bb92dabd79d")
  9. add_versions("2024.08.03", "f0c6a81c0c9a4b23b6801f40554b8bec425a83b4")
  10. on_install("windows", function (package)
  11. os.cp("include", package:installdir())
  12. end)
  13. on_test(function (package)
  14. assert(package:check_cxxsnippets({test = [[
  15. #include <windows.h>
  16. #include <wil/win32_helpers.h>
  17. void test() {
  18. auto foo = wil::GetModuleInstanceHandle();
  19. }
  20. ]]}, {configs = {languages = "c++17"}, includes = {"windows.h", "wil/win32_helpers.h"}}))
  21. end)