Skip to content

Commit

Permalink
Bump simdjson to 3.9.2, Catch2 to 3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
spnda committed May 16, 2024
1 parent eb3a8d7 commit 86c2142
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ else()
target_link_libraries(fastgltf PUBLIC simdjson::simdjson)
else()
# Download and configure simdjson
set(SIMDJSON_TARGET_VERSION "3.7.0")
set(SIMDJSON_TARGET_VERSION "3.9.2")
set(SIMDJSON_DL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/deps/simdjson")
file(MAKE_DIRECTORY ${SIMDJSON_DL_DIR})

Expand Down
4 changes: 2 additions & 2 deletions examples/gl_viewer/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
add_executable(fastgltf_gl_viewer EXCLUDE_FROM_ALL)
target_compile_features(fastgltf_gl_viewer PUBLIC cxx_std_17)
target_link_libraries(fastgltf_gl_viewer PRIVATE fastgltf fg_glad_gl46)
target_link_libraries(fastgltf_gl_viewer PRIVATE glfw::glfw glm::glm stb imgui::imgui)
target_link_libraries(fastgltf_gl_viewer PRIVATE fastgltf::fastgltf fg_glad_gl46)
target_link_libraries(fastgltf_gl_viewer PRIVATE glfw::glfw stb imgui::imgui)

fastgltf_add_source_directory(TARGET fastgltf_gl_viewer FOLDER ".")
1 change: 0 additions & 1 deletion examples/gl_viewer/gl_viewer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
#include <fastgltf/core.hpp>
#include <fastgltf/types.hpp>
#include <fastgltf/tools.hpp>
#include <fastgltf/glm_element_traits.hpp>

// It's simpler here to just declare the functions as part of the fastgltf::math namespace.
namespace fastgltf::math {
Expand Down
2 changes: 1 addition & 1 deletion fetch_test_deps.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
'imgui': "https://github.com/ocornut/imgui/archive/refs/tags/v1.90.4.zip"
}
test_deps_urls = {
'catch2': "https://github.com/catchorg/Catch2/archive/refs/tags/v3.5.3.zip",
'catch2': "https://github.com/catchorg/Catch2/archive/refs/tags/v3.6.0.zip",
'corrosion': "https://github.com/corrosion-rs/corrosion/archive/refs/heads/master.zip",
}
deps_folder = "deps/"
Expand Down

0 comments on commit 86c2142

Please sign in to comment.