From 4cf993c3ac60717a8a803c550b58ef63c0defa39 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Tue, 29 May 2012 18:40:31 +0200 Subject: [PATCH] Change CONFIG += staticlib to CONFIG += static That's the targetted, correct way of defining a static library. Change-Id: I43c23bf7e1bc5fb07bbb55720a320eaca680b038 Reviewed-by: Oswald Buddenhagen --- src/platformsupport/platformsupport.pro | 2 +- src/tools/bootstrap/bootstrap.pro | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/platformsupport/platformsupport.pro b/src/platformsupport/platformsupport.pro index 617cf902d7..3840f821ad 100644 --- a/src/platformsupport/platformsupport.pro +++ b/src/platformsupport/platformsupport.pro @@ -2,7 +2,7 @@ load(qt_build_config) TARGET = QtPlatformSupport QT = core-private gui-private -CONFIG += staticlib +CONFIG += static mac:LIBS += -lz -framework CoreFoundation -framework Carbon load(qt_module_config) diff --git a/src/tools/bootstrap/bootstrap.pro b/src/tools/bootstrap/bootstrap.pro index 63314540b3..3aa9bebe30 100644 --- a/src/tools/bootstrap/bootstrap.pro +++ b/src/tools/bootstrap/bootstrap.pro @@ -1,7 +1,7 @@ option(host_build) TEMPLATE = lib TARGET = bootstrap -CONFIG += staticlib +CONFIG += static CONFIG += console qtinc CONFIG -= qt