Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kaniol-lck committed Jun 12, 2024
1 parent 6c0c269 commit 578a5a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,6 @@ jobs:
run: |
export RAW_VERSION=$(grep -o '".*"' src/version.h | sed 's/"//g')
export VERSION=$RAW_VERSION-build.$GITHUB_RUN_NUMBER
setx PKG_CONFIG_PATH 'C:/msys64/mingw64/lib/pkgconfig'
setx PATH "%PATH%;C:/msys64/mingw64/bin"
echo "RAW_VERSION=${RAW_VERSION}" >> $GITHUB_ENV
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: Modify version number
Expand Down Expand Up @@ -193,8 +191,10 @@ jobs:
Get-Command -Name 'mingw32-make' | Format-List
- name: mingw-build
id: build
shell: cmd
shell: bash
run: |
export PKG_CONFIG_PATH='C:/msys64/mingw64/lib/pkgconfig'
export PATH="%PATH%;C:/msys64/mingw64/bin"
qmake
mingw32-make.exe qmake_all
mingw32-make.exe
Expand Down
2 changes: 2 additions & 0 deletions modmanager.pro
Original file line number Diff line number Diff line change
Expand Up @@ -419,6 +419,8 @@ unix {
LIBS += -lKF5WindowSystem
INCLUDEPATH += /usr/include/KF5/KWindowSystem
}
message($$system(printenv PKG_CONFIG_PATH))
message($$system($$pkgConfigExecutable() --cflags libaria2))
LIBS += -lstdc++
CONFIG += link_pkgconfig
equals(QT_MAJOR_VERSION, 5): PKGCONFIG += libaria2 quazip1-qt5
Expand Down

0 comments on commit 578a5a2

Please sign in to comment.