Skip to content

Commit

Permalink
Merge branch 'hotfix/fbx' of https://github.com/guillaumeblanc/ozz-an…
Browse files Browse the repository at this point in the history
…imation into hotfix/fbx
  • Loading branch information
guillaumeblanc committed Nov 24, 2023
2 parents 74e8b3f + 085835f commit 773ca61
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
Release version 0.14.3
----------------------

* Build pipeline
- Adds vs2022 compiler support for fbxsdk (#170)

Release version 0.14.2
----------------------

* Library
- Transitions away from sprintf to the more secure snprintf.
- #147 Works around gcc 11 error stringop-overflow which emits false positives for ozz math serialisation.
- #147 Works around gcc 11 error stringop-overflow which emits false positives for ozz math serialization.

* Build pipeline
- Updates CI compiler versions.
Expand Down
4 changes: 3 additions & 1 deletion build-utils/cmake/modules/FindFbx.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,9 @@ function(FindFbxLibrariesGeneric _FBX_ROOT_DIR _OUT_FBX_LIBRARIES _OUT_FBX_LIBRA
# Figures out matching compiler/os directory.

if("x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xMSVC")
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.20)
if(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.30)
set(FBX_CP_PATH "vs2022")
elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.20)
set(FBX_CP_PATH "vs2019")
elseif(NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 19.10)
set(FBX_CP_PATH "vs2017")
Expand Down

0 comments on commit 773ca61

Please sign in to comment.