Skip to content

Commit

Permalink
Add CMAKE_INSTALL_PREFIX /usr/local
Browse files Browse the repository at this point in the history
  • Loading branch information
toor1245 committed Aug 26, 2024
1 parent 172dbfe commit 896ac7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/aarch64_macos_cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Check cmake
run: cmake --version
- name: Configure
run: cmake -S. -Bbuild -G "Xcode" -DCMAKE_CONFIGURATION_TYPES=Release
run: cmake -S. -Bbuild -G "Xcode" -DCMAKE_CONFIGURATION_TYPES=Release -DCMAKE_INSTALL_PREFIX=/usr/local
- name: Build
run: cmake --build build --config Release --target ALL_BUILD -v
- name: Test
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Check cmake
run: cmake --version
- name: Configure
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release
run: cmake -S. -Bbuild -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr/local
- name: Build
run: cmake --build build --target all -v
- name: Test
Expand Down

0 comments on commit 896ac7e

Please sign in to comment.