Skip to content

Commit f8d9b74

Browse files
committed
refactor: update CMake build commands to use presets for consistency
1 parent e0f0320 commit f8d9b74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build_binary.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ jobs:
3737
CXX: g++
3838

3939
run: |
40-
cmake -S . -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
40+
cmake --preset linux-gcc-release
4141
4242
- name: 'Build'
4343
id: 'build'
4444
run: |
45-
cmake --build build --config Release --target all
45+
cmake --build --preset default
4646
4747
. build/env.sh
4848
echo "PACKAGE_VERSION=$PACKAGE_VERSION" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)