From 020cf0d30e788f0f66008bed56506162ca625dc3 Mon Sep 17 00:00:00 2001 From: Anne Jan Brouwer Date: Tue, 5 Aug 2014 01:37:32 +0200 Subject: conditionales --- qtpass.pro | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to 'qtpass.pro') diff --git a/qtpass.pro b/qtpass.pro index 03e29230..3cb5aa5e 100644 --- a/qtpass.pro +++ b/qtpass.pro @@ -8,7 +8,12 @@ QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets -TARGET = qtpass +macx { + TARGET = QtPass +} else { + TARGET = qtpass +} + TEMPLATE = app SOURCES += main.cpp\ @@ -29,7 +34,10 @@ RESOURCES += resources.qrc TRANSLATIONS += localization/localization_nl_NL.ts -RC_FILE = windows.rc +win32 { + RC_FILE = windows.rc +} else:macx { + ICON = artwork/icon.icns +} -ICON += artwork/icon.svg \ - artwork/icon.icns +OTHER_FILES += LICENSE -- cgit v1.2.3