Skip to content

Commit 85adaae

Browse files
committed
Fixed naming the shared library for debug and release builds.
1 parent afc18c8 commit 85adaae

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)