Skip to content

Commit fd980af

Browse files
committed
d
1 parent 9849f1a commit fd980af

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/mac.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix:
1818
config: [
1919
{
20-
os: macos-14,
20+
os: macos-15,
2121
arch: arm64,
2222
cmakeBuildType: Release,
2323
},

glomap/thirdparty/CMakeLists.txt

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,16 @@ elseif(IS_GNU OR IS_CLANG)
2020
endif()
2121

2222
include(FetchContent)
23-
FetchContent_Declare(PoseLib
23+
FetchContent_Declare(poselib
2424
GIT_REPOSITORY https://github.com/PoseLib/PoseLib.git
2525
GIT_TAG f119951fca625133112acde48daffa5f20eba451
2626
EXCLUDE_FROM_ALL
2727
SYSTEM
2828
)
2929
message(STATUS "Configuring PoseLib...")
30-
if (FETCH_POSELIB)
31-
FetchContent_MakeAvailable(PoseLib)
30+
if(FETCH_POSELIB)
31+
set(MARCH_NATIVE OFF CACHE BOOL "")
32+
FetchContent_MakeAvailable(poselib)
3233
else()
3334
find_package(PoseLib REQUIRED)
3435
endif()

0 commit comments

Comments
 (0)