Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,11 @@ jobs:

- name: Configure (Windows)
if: runner.os == 'Windows'
run: >
cmake -B build
-DCMAKE_TOOLCHAIN_FILE=${env:VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake
shell: bash
run: cmake -B build -DCMAKE_TOOLCHAIN_FILE="$VCPKG_INSTALLATION_ROOT/scripts/buildsystems/vcpkg.cmake"

- name: Build
run: cmake --build build --config Release --parallel
run: cmake --build build --config Release --parallel 4

- name: Smoke test (Unix)
if: runner.os != 'Windows'
Expand All @@ -79,7 +78,7 @@ jobs:
shell: pwsh
run: |
if (-not (Test-Path "${{ matrix.cli-binary }}")) { exit 1 }

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
3 changes: 2 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ endif()
include(FetchContent)
FetchContent_Declare(
wxWidgets
URL https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.4/wxWidgets-3.2.4.tar.bz2
URL https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.8.1/wxWidgets-3.2.8.1.tar.bz2
DOWNLOAD_EXTRACT_TIMESTAMP TRUE
)
# wxWidgets build can be slow, we only need core and base
set(wxBUILD_SHARED OFF CACHE BOOL "" FORCE)
Expand Down
Loading