Skip to content

Commit

Permalink
fix pro
Browse files Browse the repository at this point in the history
  • Loading branch information
lheric committed Sep 26, 2013
1 parent 6989d6f commit 8738d5e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 6 deletions.
8 changes: 6 additions & 2 deletions examples/examples.pro
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@ INCLUDEPATH += ../../libgitlevtbus/src

LIBS += -L$${OUT_PWD}/..

debug: LIBS += -lGitlEvtBusd
release: LIBS += -lGitlEvtBus
CONFIG(debug, debug|release){
LIBS += -lGitlEvtBusd
}
CONFIG(release, debug|release){
LIBS += -lGitlEvtBus
}
8 changes: 6 additions & 2 deletions src/src.pro
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,12 @@
QT += core
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

debug: TARGET = GitlEvtBusd
release: TARGET = GitlEvtBus
CONFIG(debug, debug|release){
TARGET = GitlEvtBusd
}
CONFIG(release, debug|release){
TARGET = GitlEvtBus
}

DESTDIR = $${OUT_PWD}/..

Expand Down
8 changes: 6 additions & 2 deletions test/test.pro
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,9 @@ SOURCES += \

LIBS += -L$${OUT_PWD}/..

debug: LIBS += -lGitlEvtBusd
release: LIBS += -lGitlEvtBus
CONFIG(debug, debug|release){
LIBS += -lGitlEvtBusd
}
CONFIG(release, debug|release){
LIBS += -lGitlEvtBus
}

0 comments on commit 8738d5e

Please sign in to comment.