aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/app.pro
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-01-14 12:44:53 +0100
committerEike Ziller <eike.ziller@qt.io>2022-01-20 12:18:15 +0000
commit9d8a419d107ae8219c84bc9178bfed76b94fa930 (patch)
tree110e9f16dd2e3d9c03b2dc38d2b261663606fb4f /src/app/app.pro
parent3c3580c7701ccf43ca014e19aa5fa210e90b4ed3 (diff)
Remove qmake build files
Removes qmake as a build system for building Qt Creator itself. Keep them for some tests that are not completely moved to CMake yet. Change-Id: I846c6ef65626b6dfae6375fdc85d00677aa8c2fb Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/app/app.pro')
-rw-r--r--src/app/app.pro65
1 files changed, 0 insertions, 65 deletions
diff --git a/src/app/app.pro b/src/app/app.pro
deleted file mode 100644
index 730427ba89..0000000000
--- a/src/app/app.pro
+++ /dev/null
@@ -1,65 +0,0 @@
-include(../../qtcreator.pri)
-include(../shared/qtsingleapplication/qtsingleapplication.pri)
-
-TEMPLATE = app
-CONFIG += qtc_runnable sliced_bundle
-TARGET = $$IDE_APP_TARGET
-DESTDIR = $$IDE_APP_PATH
-QT -= testlib
-# work around QTBUG-74265
-win32: VERSION=
-
-HEADERS += ../tools/qtcreatorcrashhandler/crashhandlersetup.h
-SOURCES += main.cpp ../tools/qtcreatorcrashhandler/crashhandlersetup.cpp
-
-RPATH_BASE = $$IDE_BIN_PATH
-include(../rpath.pri)
-
-include(../libs/qt-breakpad/qtbreakpad.pri)
-
-LIBS *= -l$$qtLibraryName(ExtensionSystem) -l$$qtLibraryName(Aggregation) -l$$qtLibraryName(Utils)
-
-win32 {
- # We need the version in two separate formats for the .rc file
- # RC_VERSION=4,3,82,0 (quadruple)
- # RC_VERSION_STRING="4.4.0-beta1" (free text)
- # Also, we need to replace space with \x20 to be able to work with both rc and windres
- COPYRIGHT = "2008-$${QTCREATOR_COPYRIGHT_YEAR} The Qt Company Ltd"
- APPLICATION_NAME = "$${IDE_DISPLAY_NAME}"
- DEFINES += \
- RC_APPLICATION_NAME=\"$$replace(APPLICATION_NAME, " ", "\\x20")\" \
- RC_VERSION=$$replace(QTCREATOR_VERSION, "\\.", ","),0 \
- RC_VERSION_STRING=\"$${QTCREATOR_DISPLAY_VERSION}\" \
- RC_COPYRIGHT=\"$$replace(COPYRIGHT, " ", "\\x20")\" \
- RC_ICON_PATH=.
- RC_FILE = qtcreator.rc
-} else:macx {
- LIBS += -framework CoreFoundation
- QMAKE_ASSET_CATALOGS = $$PWD/qtcreator.xcassets
- QMAKE_ASSET_CATALOGS_BUILD_PATH = $$IDE_DATA_PATH
- QMAKE_ASSET_CATALOGS_INSTALL_PATH = $$INSTALL_DATA_PATH
- QMAKE_ASSET_CATALOGS_APP_ICON = qtcreator
-
- infoplist = $$cat($$PWD/app-Info.plist, blob)
- infoplist = $$replace(infoplist, \\$\\{MACOSX_DEPLOYMENT_TARGET\\}, $$QMAKE_MACOSX_DEPLOYMENT_TARGET)
- infoplist = $$replace(infoplist, \\$\\{IDE_COPYRIGHT_YEAR\\}, $$QTCREATOR_COPYRIGHT_YEAR)
- infoplist = $$replace(infoplist, \\$\\{IDE_APP_TARGET\\}, $$IDE_APP_TARGET)
- infoplist = $$replace(infoplist, \\$\\{IDE_BUNDLE_IDENTIFIER\\}, $$PRODUCT_BUNDLE_IDENTIFIER)
- infoplist = $$replace(infoplist, \\$\\{IDE_VERSION\\}, $$QTCREATOR_VERSION)
- write_file($$OUT_PWD/Info.plist, infoplist)
-
- QMAKE_INFO_PLIST = $$OUT_PWD/Info.plist
-}
-
-target.path = $$INSTALL_APP_PATH
-INSTALLS += target
-
-DISTFILES += qtcreator.rc \
- Info.plist \
- $$PWD/app_version.h.in
-
-QMAKE_SUBSTITUTES += $$PWD/app_version.h.in
-
-CONFIG += no_batch
-
-QMAKE_EXTRA_TARGETS += deployqt # dummy