From acd19b54679df978e53a06cb4b0e164b06a3edae Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Tue, 28 Jan 2025 06:33:19 +0000 Subject: [PATCH] Configure CMake build options for Release and static build Update build workflow to set Release build type, enable Clang, and build static binaries --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3bd4c69..eb7b902 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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: |