Skip to content

Commit d5c7abf

Browse files
authored
Merge pull request #179 from bobhairgrove/master
Fixed naming the shared library for debug and release builds.
2 parents afc18c8 + 85adaae commit d5c7abf

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/qhexedit.pro

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,12 @@ SOURCES = \
1919
commands.cpp \
2020
color_manager.cpp
2121

22-
Release:TARGET = qhexedit
23-
Debug:TARGET = qhexeditd
24-
22+
CONFIG += debug_and_release
23+
CONFIG(debug, debug|release) {
24+
TARGET = qhexeditd
25+
} else {
26+
TARGET = qhexedit
27+
}
2528

2629
unix {
2730
# Allows users to specify parameters when running qmake

0 commit comments

Comments
 (0)