Browse Source

hopscotch-map: copy natvis to include dir (#3336)

Jérôme Leclercq 1 year ago
parent
commit
3fb366adfb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/h/hopscotch-map/xmake.lua

+ 1 - 1
packages/h/hopscotch-map/xmake.lua

@@ -1,5 +1,4 @@
 package("hopscotch-map")
 package("hopscotch-map")
-
     set_kind("library", {headeronly = true})
     set_kind("library", {headeronly = true})
     set_homepage("https://github.com/Tessil/hopscotch-map")
     set_homepage("https://github.com/Tessil/hopscotch-map")
     set_description("A C++ implementation of a fast hash map and hash set using hopscotch hashing")
     set_description("A C++ implementation of a fast hash map and hash set using hopscotch hashing")
@@ -12,6 +11,7 @@ package("hopscotch-map")
 
 
     on_install(function (package)
     on_install(function (package)
         os.cp("include/tsl", package:installdir("include"))
         os.cp("include/tsl", package:installdir("include"))
+        os.cp("tsl-hopscotch-map.natvis", package:installdir("include", "tsl"))
     end)
     end)
 
 
     on_test(function (package)
     on_test(function (package)