Configure CMake build options for Release and static build
Some checks failed
Build / build (push) Has been cancelled

Update build workflow to set Release build type, enable Clang, and build static binaries
This commit is contained in:
2025-01-28 06:33:19 +00:00
parent c7e76a7945
commit acd19b5467

View File

@@ -27,7 +27,7 @@ jobs:
- name: Configure the project
run: |
cd build
CC=clang CXX=clang++ cmake ..
CC=clang CXX=clang++ cmake -DCMAKE_BUILD_TYPE=Release -DUSE_CLANG=ON -DBUILD_STATIC=ON ..
- name: Build the project
run: |