Skip to content

Commit 70c16db

Browse files
committed
fix library path for Windows build
1 parent 9157e82 commit 70c16db

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ moc_*.cpp
1616
qrc_*.cpp
1717
ui_*.h
1818
localization/*.qm
19+
build/

main/main.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ TEMPLATE = app
44
QT += core gui
55

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

1010
macx {

tests/auto/util/util.pro

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ message($$QMAKE_LINK_OBJECT_MAX)
44

55
SOURCES += tst_util.cpp \
66

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

99
HEADERS += util.h \
1010
qtpasssettings.h \

0 commit comments

Comments
 (0)