Skip to content

Commit

Permalink
Put parameters back into play
Browse files Browse the repository at this point in the history
  • Loading branch information
achaikou committed Jan 25, 2024
1 parent ad4ba27 commit 26b3fe2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
cmake_generator: '-G "Visual Studio 16 2019" -A Win32'
- platform: x64
cmake_generator: '-G "Visual Studio 16 2019" -A x64'
- fmt-header-only: 'ON'
- fmt-header-only: ON
- platform: x64
config: Release
fmt-header-only: 'OFF'
fmt-header-only: OFF

steps:
- name: explicitly disable autocrlf
Expand Down Expand Up @@ -66,7 +66,8 @@ jobs:
cd build
cmake \
-DCMAKE_POSITION_INDEPENDENT_CODE=ON \
-DLFP_FMT_HEADER_ONLY=ON \
-DLFP_FMT_HEADER_ONLY=${{ matrix.fmt-header-only }} \
-DCMAKE_BUILD_TYPE=${{ matrix.config }} \
${{ matrix.cmake_generator }} \
..
cmake --build . --config ${{ matrix.config }} --target install
Expand Down

0 comments on commit 26b3fe2

Please sign in to comment.