Skip to content

Commit

Permalink
windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dguittet committed May 9, 2024
1 parent 0e23b9f commit 00045e7
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,11 @@ jobs:
- name: Download wxWidgets
shell: bash
run: |
# curl -L https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.3/wxWidgets-3.2.3.tar.bz2 -o wxWidgets-3.2.3.tar.bz2
# tar jxf wxWidgets-3.2.3.tar.bz2
curl -L https://github.com/wxWidgets/wxWidgets/releases/download/v3.2.3/wxMSW-3.2.3_vc14x_Dev.7z -o wxMSW-3.2.3_vc14x_Dev.7z
mkdir wxMSW-3.2.3_vc14x_Dev
7z x wxMSW-3.2.3_vc14x_Dev.7z -o${WXMSW3}
echo ${WXMSW3}/bin >> $GITHUB_PATH
# - name: Install wxWidgets
# run: |
# cd wxWidgets-3.2.3
# msbuild build/msw/wx_vc17.sln /t:Build /p:Configuration=Release
# dir ${WXMSW3}

- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v2
with:
Expand All @@ -93,7 +85,11 @@ jobs:
- name: Build LK
shell: bash
run: |
cmake -Bbuild_win -DCMAKE_BUILD_TYPE=Release
ls ${WXMSW3}
- name: Build LK
run: |
cmake -Bbuild_win
cmake --build build_win --config Release -j4
- name: Save static lib & lksandbox
Expand Down

0 comments on commit 00045e7

Please sign in to comment.