Skip to content

Commit

Permalink
Fix release mode on Windows. (#13)
Browse files Browse the repository at this point in the history
This resolves:
#10

Apparently, cmake on Windows do honor its own "CMAKE_BUILD_TYPE". We
need to use "--config Release" to build in release mode.
  • Loading branch information
ArthurSonzogni authored Aug 31, 2022
1 parent db4310e commit d51650a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ jobs:
mkdir build;
cd build;
cmake .. -DCMAKE_BUILD_TYPE=Release;
cmake --build . --target package;
cmake --build . --target package --config Release
- uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ needs.release.outputs.upload_url }}
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# (head)
- Update FTXUI version.
- Fix issue 10: Windows Github Release contains Debug version.

# v1.0.8
- Support PageDown,PageUp,HomeEnd button.
Expand Down

0 comments on commit d51650a

Please sign in to comment.