Skip to content

Commit

Permalink
Update cmake.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
kadirlua authored Dec 13, 2024
1 parent 43e2c80 commit edb62d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ jobs:
- name: Configure CMake shared=${{ matrix.shared }}
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{ matrix.buildType }} -DBUILD_SHARED_LIBS=${{ matrix.shared }}
run: |
cmake -B ${{github.workspace}}/build \
-DCMAKE_BUILD_TYPE=${{ matrix.buildType }} \
-DBUILD_SHARED_LIBS=${{ matrix.shared }}
- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit edb62d5

Please # to comment.