Skip to content

Commit 76d708a

Browse files
author
Andrej Redeky
committed
Update libs
1 parent 46079d8 commit 76d708a

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

vendor/FeldarianBaseLibrary/xmake.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,14 +86,14 @@ if is_plat("linux") then
8686
--add_requireconfs("*.*", { configs = { cxflags = "-fsanitize=address -fsanitize=hwaddress -fsanitize=thread -fsanitize=undefined -fsanitize=memory -fsanitize=leak", mxflags = "-fsanitize=address -fsanitize=hwaddress -fsanitize=thread -fsanitize=undefined -fsanitize=memory -fsanitize=leak", ldflags = "-fsanitize=address -fsanitize=hwaddress -fsanitize=thread -fsanitize=undefined -fsanitize=memory -fsanitize=leak", shflags = "-fsanitize=address -fsanitize=hwaddress -fsanitize=thread -fsanitize=undefined -fsanitize=memory -fsanitize=leak" } })
8787
end
8888

89-
add_requires("libsndfile 1.2.0", { configs = { shared = true } })
89+
add_requires("libsndfile 1.2.2", { configs = { shared = true } })
9090
add_requires("xxhash v0.8.2")
9191
add_requires("icu4c 73.2", { configs = { shared = true } })
9292

9393
--add_requires("catch2 v3.4.0")
9494
--add_requires("tracy v0.9.1")
9595

96-
add_requires("toml++ 4a28c36c435d813ddbd39a9a48a79d8c862c547f", { configs = { header_only = true } }) -- 3.3.0 with extra patches
96+
add_requires("toml++ v3.4.0", { configs = { header_only = true } })
9797
add_requires("libsamplerate 22bd06eb114850ebe31981eb794d150a95439fef") -- 0.2.2 with extra patches
9898

9999
option("fbl-vendor-use-std-ranges")
@@ -129,7 +129,7 @@ option("fbl-vendor-use-fmt")
129129
option_end()
130130

131131
if has_config("fbl-use-utf-fmt") then
132-
add_requires("fmt 10.0.0", { configs = { header_only = false } })
132+
add_requires("fmt 10.1.1", { configs = { header_only = false } })
133133
end
134134

135135
option("fbl-use-pcms16")

xmake.lua

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ end
9393
add_defines("IMGUI_DISABLE_OBSOLETE_FUNCTIONS=1")
9494

9595
add_requires("scnlib 1.1.2", { configs = { header_only = false } })
96-
add_requires("libsdl 2.28.2", { configs = { shared = true, use_sdlmain = false } })
96+
add_requires("libsdl 2.28.3", { configs = { shared = true, use_sdlmain = false } })
97+
add_requires("tinyfiledialogs 3.15.1")
9798

9899
local imguiUserConfig = path.absolute("src/ImGuiConfig.hpp");
99100
add_requires("imgui v1.89.9-docking", { configs = { wchar32 = true, freetype = true, user_config = imguiUserConfig } })
@@ -188,7 +189,7 @@ target("Glacier1AudioTool")
188189
set_pcxxheader("src/Precompiled.hpp")
189190

190191
add_syslinks("comdlg32", "opengl32", "shell32")
191-
add_packages("scnlib", "libsdl", "imgui", "spdlog", "xxhash", "toml++", "icu4c")
192+
add_packages("scnlib", "libsdl", "imgui", "spdlog", "xxhash", "toml++", "icu4c", "tinyfiledialogs")
192193

193194
before_build(function (target)
194195
os.rm(target:targetdir() .. "/data")

0 commit comments

Comments
 (0)