Skip to content

Commit

Permalink
ci
Browse files Browse the repository at this point in the history
  • Loading branch information
kaniol-lck committed Jul 5, 2024
1 parent 5db6093 commit f2a0c3c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
fail-fast: false
matrix:
os: [macOS-latest]
qt_ver: [6.7.1]
qt_ver: [5.12.12]
qt_arch: [clang_64]
steps:
- name: Install Qt
Expand Down
11 changes: 11 additions & 0 deletions modmanager.pro
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,17 @@ unix {
# equals(QT_MAJOR_VERSION, 6): PKGCONFIG += libaria2 quazip1-qt6
}

macx {
message("macos build")

INCLUDEPATH += /usr/local/include/aria2
LIBS += -L/usr/local/lib -libaria2
equals(QT_MAJOR_VERSION,5):INCLUDEPATH += /usr/local/include/QuaZip-Qt5-1.4/quazip
equals(QT_MAJOR_VERSION,6):INCLUDEPATH += /usr/local/include/QuaZip-Qt6-1.4/quazip
equals(QT_MAJOR_VERSION,5):LIBS += -L/usr/local/lib -lquazip1-qt5
equals(QT_MAJOR_VERSION,6):LIBS += -L/usr/local/lib -lquazip1-qt6
}

win32 {
#native blur
LIBS += -ldwmapi
Expand Down

0 comments on commit f2a0c3c

Please sign in to comment.