Skip to content

Commit

Permalink
cpptrace: add v0.7.2 version
Browse files Browse the repository at this point in the history
  • Loading branch information
star-hengxing committed Oct 13, 2024
1 parent a3c6be5 commit edc6e9f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/c/cpptrace/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ package("cpptrace")
add_urls("https://github.com/jeremy-rifkin/cpptrace/archive/refs/tags/$(version).tar.gz",
"https://github.com/jeremy-rifkin/cpptrace.git")

add_versions("v0.7.2", "62835abfd91a840e4d212c850695b576523fe6f9036bc5c3e52183b6eb9905c5")
add_versions("v0.7.1", "63df54339feb0c68542232229777df057e1848fc8294528613971bbf42889e83")
add_versions("v0.7.0", "b5c1fbd162f32b8995d9b1fefb1b57fac8b1a0e790f897b81cdafe3625d12001")
add_versions("v0.6.3", "665bf76645ec7b9e6d785a934616f0138862c36cdb58b0d1c9dd18dd4c57395a")
Expand Down
5 changes: 5 additions & 0 deletions packages/l/libassert/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,11 @@ package("libassert")
table.insert(configs, "-DLIBASSERT_USE_MAGIC_ENUM=" .. (package:config("magic_enum") and "ON" or "OFF"))
import("package.tools.cmake").install(package, configs)
end

if package:is_plat("windows") and package:is_debug() then
local dir = package:installdir(package:config("shared") and "bin" or "lib")
os.trycp(path.join(package:buildir(), "assert.pdb"), dir)
end
end)

on_test(function (package)
Expand Down

0 comments on commit edc6e9f

Please sign in to comment.