From efbb6d1211f7303037110c55b90aff452564e93d Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Tue, 21 Jan 2014 10:45:41 +0100 Subject: [PATCH] Use regular target suffix (_d for debug and none for release) --- qmake.build/config.pri | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qmake.build/config.pri b/qmake.build/config.pri index e3158f3..8ef547f 100644 --- a/qmake.build/config.pri +++ b/qmake.build/config.pri @@ -1,7 +1,7 @@ include(compiler_config.pri) CONFIG(debug, debug|release) { - TARGET_SUFFIX = .debug + TARGET_SUFFIX = _d } else { - TARGET_SUFFIX = .release + TARGET_SUFFIX = } CONFIG *= build_all debug_and_release