Skip to content

Commit

Permalink
Still trying to get windows to compile.
Browse files Browse the repository at this point in the history
  • Loading branch information
arbCoding committed Jan 27, 2024
1 parent e4c2b3c commit 05cf95c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake-windows-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
git clone https://github.com/catchorg/Catch2.git
cd Catch2
git checkout v3.5.2
cmake -Bbuild -S. -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release
cmake -Bbuild -S. -DBUILD_TESTING=OFF -DCMAKE_BUILD_TYPE=Release -D_ITERATOR_DEBUG_LEVEL=0
cmake --build build/ --target install
- name: Prep License File for Distribution
run: cp LICENSE License.txt

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=20 -DCMAKE_CXX_STANDARD_REQUIRED=ON -DCMAKE_CXX_EXTENSIONS=OFF -DCMAKE_CXX_FLAGS="/O2 /DNDEBUG /EHsc"
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=20 -DCMAKE_CXX_STANDARD_REQUIRED=ON -DCMAKE_CXX_EXTENSIONS=OFF -DCMAKE_CXX_FLAGS="/O2 /DNDEBUG /EHsc /D_ITERATOR_DEBUG_LEVEL=0"

- name: Build
run: cmake --build ${{github.workspace}}/build --config Release
Expand Down

0 comments on commit 05cf95c

Please sign in to comment.