Skip to content

Commit

Permalink
add -L
Browse files Browse the repository at this point in the history
  • Loading branch information
foldynl committed Jan 30, 2024
1 parent 2c6a0e7 commit c2cafe7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:
brew install brotli
brew install icu4c
brew install pkg-config
ls -al /usr/local/lib/
- name: Checkout code
uses: actions/checkout@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions QLog.pro
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ unix:!macx {
INSTALLS += target desktop icon metainfo

INCLUDEPATH += /usr/local/include
LIBS += -L/usr/local/lib -lhamlib
LIBS += -lhamlib
equals(QT_MAJOR_VERSION, 6): LIBS += -lqt6keychain
equals(QT_MAJOR_VERSION, 5): LIBS += -lqt5keychain
}
Expand All @@ -425,7 +425,7 @@ macx: {
}

INCLUDEPATH += /usr/local/include
LIBS += -lhamlib
LIBS += -L/usr/local/lib -lhamlib
equals(QT_MAJOR_VERSION, 6): LIBS += -lqt6keychain
equals(QT_MAJOR_VERSION, 5): LIBS += -lqt5keychain
DISTFILES +=
Expand Down

0 comments on commit c2cafe7

Please sign in to comment.