Skip to content

Commit

Permalink
fix library path for Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
tezeb committed Oct 23, 2017
1 parent 9157e82 commit 70c16db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ moc_*.cpp
qrc_*.cpp
ui_*.h
localization/*.qm
build/
2 changes: 1 addition & 1 deletion main/main.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ TEMPLATE = app
QT += core gui

CONFIG += c++11
LIBS += -L../src/ -lqtpass
LIBS += -L"$$OUT_PWD/../src/$(OBJECTS_DIR)" -lqtpass
INCLUDEPATH += ../src

macx {
Expand Down
2 changes: 1 addition & 1 deletion tests/auto/util/util.pro
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ message($$QMAKE_LINK_OBJECT_MAX)

SOURCES += tst_util.cpp \

LIBS += -L../../../src -lqtpass
LIBS += -L"$$OUT_PWD/../../../src/$(OBJECTS_DIR)" -lqtpass

HEADERS += util.h \
qtpasssettings.h \
Expand Down

0 comments on commit 70c16db

Please sign in to comment.