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>
This commit is contained in:
Eike Ziller
2022-01-14 12:44:53 +01:00
parent 3c3580c770
commit 9d8a419d10
483 changed files with 0 additions and 13336 deletions

View File

@ -175,25 +175,6 @@ else()
)
endif()
# install qmake support files
install(
FILES
qtcreator.pri
qtcreatordata.pri
qtcreator_ide_branding.pri
DESTINATION ${IDE_HEADER_INSTALL_PATH}
COMPONENT Devel EXCLUDE_FROM_ALL
)
install(
FILES
src/qtcreatorlibrary.pri
src/qtcreatorplugin.pri
src/qtcreatortool.pri
src/rpath.pri
DESTINATION ${IDE_HEADER_INSTALL_PATH}/src
COMPONENT Devel EXCLUDE_FROM_ALL
)
feature_summary(INCLUDE_QUIET_PACKAGES WHAT
PACKAGES_FOUND PACKAGES_NOT_FOUND
ENABLED_FEATURES DISABLED_FEATURES

View File

@ -1,19 +0,0 @@
TEMPLATE = app
TARGET = qtcreator.sh
include(../qtcreator.pri)
OBJECTS_DIR =
PRE_TARGETDEPS = $$PWD/qtcreator.sh
QMAKE_LINK = cp $$PWD/qtcreator.sh $@ && : IGNORE REST OF LINE:
QMAKE_STRIP =
CONFIG -= qt separate_debug_info gdb_dwarf_index
QMAKE_CLEAN = qtcreator.sh
target.path = $$INSTALL_BIN_PATH
INSTALLS += target
DISTFILES = $$PWD/qtcreator.sh

View File

@ -181,12 +181,6 @@ function(add_qtc_library name)
add_library(QtCreator::${name} ALIAS ${name})
set_public_headers(${name} "${_arg_SOURCES}")
# transitional qmake plugin build support
string(TOLOWER "${name}" lowername)
set(dependencies_pri "${CMAKE_CURRENT_SOURCE_DIR}/${lowername}_dependencies.pri")
if(EXISTS ${dependencies_pri})
qtc_add_public_header(${dependencies_pri})
endif()
# TODO remove, see above
if (_arg_SOURCES_PREFIX)
@ -446,12 +440,6 @@ function(add_qtc_plugin target_name)
add_library(QtCreator::${target_name} ALIAS ${target_name})
set_public_headers(${target_name} "${_arg_SOURCES}")
# transitional qmake plugin build support
string(TOLOWER "${target_name}" lowername)
set(dependencies_pri "${CMAKE_CURRENT_SOURCE_DIR}/${lowername}_dependencies.pri")
if(EXISTS ${dependencies_pri})
qtc_add_public_header(${dependencies_pri})
endif()
### Generate EXPORT_SYMBOL
string(TOUPPER "${name}_LIBRARY" EXPORT_SYMBOL)

View File

@ -1,11 +0,0 @@
build_online_docs: \
DOC_FILES += $$IDE_DOC_FILES_ONLINE
else: \
DOC_FILES += $$IDE_DOC_FILES
include(../docs.pri)
fixnavi.commands = \
cd $$shell_path($$PWD) && \
perl fixnavi.pl -Dqcmanual -Dqtquick src
QMAKE_EXTRA_TARGETS += fixnavi

View File

@ -1,81 +0,0 @@
# Creates targets for building documentation
# (adapted from qt_docs.prf)
#
# Usage: Define variables (details below) and include this pri file afterwards.
#
# QDOC_ENV - environment variables to set for the qdoc call (see example below)
# DOC_INDEX_PATHS - list of paths where qdoc should search for index files of dependent
# modules (Qt index path is included by default)
# DOC_FILES - list of qdocconf files
# DOC_OUTDIR_POSTFIX - html is generated in $$OUT_PWD/<qdocconf_name>$$DOC_OUTDIR_POSTFIX
# DOC_HTML_INSTALLDIR - path were to install the directory of html files
# DOC_QCH_OUTDIR - path where to generated the qch files
# DOC_QCH_INSTALLDIR - path where to install the qch files
#
# Example for QDOC_ENV:
# ver.name = VERSION
# ver.value = 1.0.2
# foo.name = FOO
# foo.value = foo
# QDOC_ENV = ver foo
isEmpty(DOC_FILES): error("Set DOC_FILES before including doc_targets.pri")
isEmpty(DOC_HTML_INSTALLDIR): error("Set DOC_HTML_INSTALLDIR before including doc_targets.pri")
isEmpty(DOC_QCH_OUTDIR): error("Set DOC_QCH_OUTDIR before including doc_targets.pri")
isEmpty(DOC_QCH_INSTALLDIR): error("Set DOC_QCH_INSTALLDIR before including doc_targets.pri")
QT_TOOL_ENV = $$QDOC_ENV
qtPrepareTool(QDOC, qdoc)
QT_TOOL_ENV =
!build_online_docs: qtPrepareTool(QHELPGENERATOR, qhelpgenerator)
DOCS_BASE_OUTDIR = $$OUT_PWD/doc/html
DOC_INDEXES += -indexdir $$shell_quote($$[QT_INSTALL_DOCS])
for (index_path, DOC_INDEX_PATHS): \
DOC_INDEXES += -indexdir $$shell_quote($$index_path)
for (doc_file, DOC_FILES) {
!exists($$doc_file): error("Cannot find documentation specification file $$doc_file")
DOC_TARGET = $$replace(doc_file, ^(.*/)?(.*)\\.qdocconf$, \\2)
DOC_TARGETDIR = $$DOC_TARGET
DOC_OUTPUTDIR = $${DOCS_BASE_OUTDIR}/$${DOC_TARGETDIR}$${DOC_OUTDIR_POSTFIX}
html_docs_$${DOC_TARGET}.commands = $$QDOC -outputdir $$shell_quote($$DOC_OUTPUTDIR) $$doc_file $$DOC_INDEXES $$DOC_INCLUDES
QMAKE_EXTRA_TARGETS += html_docs_$${DOC_TARGET}
!isEmpty(html_docs.commands): html_docs.commands += &&
html_docs.commands += $$eval(html_docs_$${DOC_TARGET}.commands)
inst_html_docs.files += $$DOC_OUTPUTDIR
!build_online_docs {
qch_docs_$${DOC_TARGET}.commands = $$QHELPGENERATOR $$shell_quote($$DOC_OUTPUTDIR/$${DOC_TARGET}.qhp) -o $$shell_quote($$DOC_QCH_OUTDIR/$${DOC_TARGET}.qch)
qch_docs_$${DOC_TARGET}.depends = html_docs_$${DOC_TARGET}
QMAKE_EXTRA_TARGETS += qch_docs_$${DOC_TARGET}
!isEmpty(qch_docs.commands): qch_docs.commands += &&
qch_docs.commands += $$eval(qch_docs_$${DOC_TARGET}.commands)
inst_qch_docs.files += $$DOC_QCH_OUTDIR/$${DOC_TARGET}.qch
}
}
!build_online_docs {
qch_docs.depends = html_docs
inst_qch_docs.path = $$DOC_QCH_INSTALLDIR
inst_qch_docs.CONFIG += no_check_exist no_default_install no_build
install_docs.depends = install_inst_qch_docs
docs.depends = qch_docs
INSTALLS += inst_qch_docs
QMAKE_EXTRA_TARGETS += qch_docs install_docs
} else {
docs.depends = html_docs
}
inst_html_docs.path = $$DOC_HTML_INSTALLDIR
inst_html_docs.CONFIG += no_check_exist no_default_install directory
INSTALLS += inst_html_docs
install_docs.depends += install_inst_html_docs
QMAKE_EXTRA_TARGETS += html_docs docs

View File

@ -470,8 +470,6 @@
\section2 Setting Up Documentation Builds
You can configure documentation builds using CMake or qmake.
For more information about setting up the build environment with a
self-built Qt if you do not want to build the whole Qt, see
\l{https://wiki.qt.io/Building_Qt_Documentation}{Building Qt Documentation}
@ -596,103 +594,6 @@
\l{http://doc.qt.io/qtcreator/creator-help.html#adding-external-documentation}
{Adding External Documentation}.
\section3 Using qmake
To build offline documentation using qmake:
\list 1
\li In the project folder, run \c qmake from an installed Qt.
For example:
\badcode
C:\dev\qtc-super\qtcreator>..\..\..\Qt\5.15.1\msvc2019_64\bin\qmake.exe
\endcode
\li Enter the following doc build command:
\list
\li On Windows: \c {nmake docs}
\li On Linux and \macos: \c {make docs}
\endlist
\endlist
To build online documentation using qmake:
\list 1
\li In the project folder, run \c qmake from an installed Qt with the
online configuration option. For example:
\badcode
C:\dev\qtc-super\qtcreator>..\..\..\Qt\5.15.1\msvc2019_64\bin\qmake.exe
"CONFIG+=build_online_docs"
\endcode
\li Enter the following doc build command:
\list
\li On Windows: \c {nmake html_docs}
\li On Linux and \macos: \c {make html_docs}
\endlist
\endlist
To get the correct product name and version when building the \QDS
Manual, you must run \c {qmake -r} on \c {qtcreator.pro} with the
\c IDE_BRANDING_PRI option set to the absolute path of
\c {ide_branding.pri} in the \QDS (private) repository.
For example, on Windows enter (all on one line):
\badcode
C:\dev\qtc-super\qtcreator>..\..\..\Qt\5.14.1\msvc2017_64\bin\qmake.exe
qtcreator.pro -r
IDE_BRANDING_PRI=C:\dev\tqtc-plugin-qtquickdesigner\studiodata\branding\ide_branding.pri
\endcode
To use the offline style to build the \QDS help with qmake:
\list 1
\li In the \c {doc/qtdesignstudio} folder, run \c qmake from Qt 5.14.0,
or later with the path to the branding information as an option
(all on one line):
\badcode
<relative_path_to>/qmake.exe qtcreator.pro -r
IDE_BRANDING_PRI=<absolute_path_to>/ide_branding.pri
\endcode
\li Run \c {make docs} on Linux and macOS or \c {nmake docs}
on Windows.
\endlist
To use the online style to build the \QDS Manual with qmake:
\list 1
\li In the \c {doc/qtdesignstudio} folder, run \c qmake from Qt 5.14.0,
or later with the path to the branding information as an option
(all on one line):
\badcode
<relative_path_to>/qmake.exe qtcreator.pro -r
IDE_BRANDING_PRI=<absolute_path_to>/ide_branding.pri
\endcode
\li Run \c {make html_docs} on Linux and macOS or \c {nmake html_docs}
on Windows.
\endlist
The HTML files for the offline documentation are generated in the following
folders:
\list
\li \c doc/html/qtcreator
\li \c doc/html/qtcreator-dev
\li \c doc/qtdesignstudio/doc/html/qtdesignstudio
\endlist
The help files (\c {.qch}) are generated in the
\c {share/doc/qtcreator} directory in the \QC build directory on Windows and
Linux, and in the \c {bin/Qt Creator.app/Contents/Resources/app} directory
on \macos.
The HTML files for the online documentation are generated in the following
folders:
\list
\li \c doc/html/qtcreator-online
\li \c doc/html/qtcreator-dev-online
\li \c doc/qtdesignstudio/doc/html/qtdesignstudio-online
\endlist
\section2 Additional Build Commands
Besides \c docs and \c html_docs, you can use the following build targets:

View File

@ -1,15 +0,0 @@
TEMPLATE = aux
# qtcreator.pro is a subdirs TEMPLATE which does not have debug_and_release
# so setup the same behavoir here for the current used aux TEMPLATE
CONFIG -= debug_and_release
# include(../qt-creator-defines.pri)
include(../../qtcreator.pri)
build_online_docs: \
DOC_FILES = $$PWD/qtdesignstudio-online.qdocconf
else: \
DOC_FILES = $$PWD/qtdesignstudio.qdocconf
include(../../docs.pri)

View File

@ -1,57 +0,0 @@
# Creates targets for building Qt Creator documentation
#
# Usage: Include qtcreator.pri and define DOC_FILES to point to a list of qdocconf files,
# then include this .pri file
isEmpty(VERSION): error("Include qtcreator.pri before including docs.pri!")
qtcname.name = IDE_DISPLAY_NAME
qtcname.value = "$$IDE_DISPLAY_NAME"
qtcid.name = IDE_ID
qtcid.value = $$IDE_ID
qtccasedid.name = IDE_CASED_ID
qtccasedid.value = $$IDE_CASED_ID
qtcver.name = QTC_VERSION
qtcver.value = $$QTCREATOR_DISPLAY_VERSION
qtcvertag.name = QTC_VERSION_TAG
qtcvertag.value = $$replace(VERSION, \.,)
qtdocs.name = QT_INSTALL_DOCS
qtdocs.value = $$[QT_INSTALL_DOCS/src]
qdocindex.name = QDOC_INDEX_DIR
qdocindex.value = $$[QT_INSTALL_DOCS]
qtcdocsdir.name = QTC_DOCS_DIR
qtcdocsdir.value = $$IDE_SOURCE_TREE/doc
qtccopyrightyear.name = QTCREATOR_COPYRIGHT_YEAR
qtccopyrightyear.value = $$QTCREATOR_COPYRIGHT_YEAR
qtcsourcedir.name = IDE_SOURCE_TREE
qtcsourcedir.value = $$IDE_SOURCE_TREE
QDOC_ENV += qtcname \
qtcid \
qtccasedid \
qtcver \
qtcvertag \
qtdocs \
qdocindex \
qtcdocsdir \
qtccopyrightyear \
qtcsourcedir
DOC_INDEX_PATHS += $$IDE_BUILD_TREE/doc
DOC_HTML_INSTALLDIR = $$INSTALL_DOC_PATH
DOC_QCH_OUTDIR = $$IDE_DOC_PATH
DOC_QCH_INSTALLDIR = $$INSTALL_DOC_PATH
minQtVersion(5, 11, 0) {
for (include_path, INCLUDEPATH): \
DOC_INCLUDES += -I $$shell_quote($$include_path)
for (module, QT) {
MOD_INCLUDES = $$eval(QT.$${module}.includes)
for (include_path, MOD_INCLUDES): \
DOC_INCLUDES += -I $$shell_quote($$include_path)
}
for (include_path, QMAKE_DEFAULT_INCDIRS): \
DOC_INCLUDES += -I $$shell_quote($$include_path)
macos: DOC_INCLUDES += -F $$shell_quote($$[QT_INSTALL_LIBS])
}
include(doc/doc_targets.pri)

View File

@ -1,145 +0,0 @@
include(qtcreator.pri)
#version check qt
!minQtVersion(5, 15, 2) {
message("Cannot build $$IDE_DISPLAY_NAME with Qt version $${QT_VERSION}.")
error("Use at least Qt 5.15.2.")
}
include(doc/doc.pri)
TEMPLATE = subdirs
CONFIG += ordered
SUBDIRS = src share
unix:!macx:!isEmpty(copydata):SUBDIRS += bin
!isEmpty(BUILD_TESTS):SUBDIRS += tests
DISTFILES += dist/copyright_template.txt \
README.md \
$$files(dist/changes-*) \
qtcreator.qbs \
$$files(qbs/*, true) \
$$files(cmake/*) \
$$files(scripts/*.py) \
$$files(scripts/*.sh) \
$$files(scripts/*.pl)
exists(src/shared/qbs/qbs.pro) {
# Make sure the qbs dll ends up alongside the Creator executable.
QBS_DLLDESTDIR = $${IDE_BUILD_TREE}/bin
cache(QBS_DLLDESTDIR)
QBS_DESTDIR = $${IDE_LIBRARY_PATH}
cache(QBS_DESTDIR)
QBSLIBDIR = $${IDE_LIBRARY_PATH}
cache(QBSLIBDIR)
QBS_INSTALL_PREFIX = $${QTC_PREFIX}
cache(QBS_INSTALL_PREFIX)
QBS_LIB_INSTALL_DIR = $$INSTALL_LIBRARY_PATH
cache(QBS_LIB_INSTALL_DIR)
QBS_RESOURCES_BUILD_DIR = $${IDE_DATA_PATH}/qbs
cache(QBS_RESOURCES_BUILD_DIR)
QBS_RESOURCES_INSTALL_DIR = $$INSTALL_DATA_PATH/qbs
cache(QBS_RESOURCES_INSTALL_DIR)
macx {
QBS_PLUGINS_BUILD_DIR = $${IDE_PLUGIN_PATH}
QBS_APPS_RPATH_DIR = @loader_path/../Frameworks
} else {
QBS_PLUGINS_BUILD_DIR = $$IDE_PLUGIN_PATH
QBS_APPS_RPATH_DIR = \$\$ORIGIN/../$$IDE_LIBRARY_BASENAME/qtcreator
}
cache(QBS_PLUGINS_BUILD_DIR)
cache(QBS_APPS_RPATH_DIR)
QBS_PLUGINS_INSTALL_DIR = $$INSTALL_PLUGIN_PATH
cache(QBS_PLUGINS_INSTALL_DIR)
QBS_LIBRARY_DIRNAME = $${IDE_LIBRARY_BASENAME}
cache(QBS_LIBRARY_DIRNAME)
QBS_APPS_DESTDIR = $${IDE_BIN_PATH}
cache(QBS_APPS_DESTDIR)
QBS_APPS_INSTALL_DIR = $$INSTALL_BIN_PATH
cache(QBS_APPS_INSTALL_DIR)
QBS_LIBEXEC_DESTDIR = $${IDE_LIBEXEC_PATH}
cache(QBS_LIBEXEC_DESTDIR)
QBS_LIBEXEC_INSTALL_DIR = $$INSTALL_LIBEXEC_PATH
cache(QBS_LIBEXEC_INSTALL_DIR)
QBS_RELATIVE_LIBEXEC_PATH = $$relative_path($$QBS_LIBEXEC_DESTDIR, $$QBS_APPS_DESTDIR)
isEmpty(QBS_RELATIVE_LIBEXEC_PATH):QBS_RELATIVE_LIBEXEC_PATH = .
cache(QBS_RELATIVE_LIBEXEC_PATH)
QBS_RELATIVE_PLUGINS_PATH = $$relative_path($$QBS_PLUGINS_BUILD_DIR, $$QBS_APPS_DESTDIR$$)
cache(QBS_RELATIVE_PLUGINS_PATH)
QBS_RELATIVE_SEARCH_PATH = $$relative_path($$QBS_RESOURCES_BUILD_DIR, $$QBS_APPS_DESTDIR)
cache(QBS_RELATIVE_SEARCH_PATH)
!qbs_no_dev_install {
QBS_CONFIG_ADDITION = qbs_no_dev_install qbs_enable_project_file_updates
cache(CONFIG, add, QBS_CONFIG_ADDITION)
}
# Create qbs documentation targets.
DOC_FILES =
DOC_TARGET_PREFIX = qbs_
include(src/shared/qbs/doc/doc_shared.pri)
include(src/shared/qbs/doc/doc_targets.pri)
docs.depends += qbs_docs
!build_online_docs {
install_docs.depends += install_qbs_docs
}
unset(DOC_FILES)
unset(DOC_TARGET_PREFIX)
}
contains(QT_ARCH, i386): ARCHITECTURE = x86
else: ARCHITECTURE = $$QT_ARCH
macx: PLATFORM = "mac"
else:win32: PLATFORM = "windows"
else:linux-*: PLATFORM = "linux-$${ARCHITECTURE}"
else: PLATFORM = "unknown"
BASENAME = $$(INSTALL_BASENAME)
isEmpty(BASENAME): BASENAME = qt-creator-$${PLATFORM}$(INSTALL_EDITION)-$${QTCREATOR_VERSION}$(INSTALL_POSTFIX)
macx {
APPBUNDLE = "$$OUT_PWD/bin/$${IDE_APP_TARGET}.app"
BINDIST_SOURCE.release = "$$OUT_PWD/bin/$${IDE_APP_TARGET}.app"
BINDIST_SOURCE.debug = "$$OUT_PWD/bin"
BINDIST_EXCLUDE_ARG.debug = "--exclude-toplevel"
deployqt.commands = $$PWD/scripts/deployqtHelper_mac.sh \"$${APPBUNDLE}\" \"$$[QT_INSTALL_BINS]\" \"$$[QT_INSTALL_TRANSLATIONS]\" \"$$[QT_INSTALL_PLUGINS]\" \"$$[QT_INSTALL_QML]\"
codesign.commands = codesign --deep -o runtime -s \"$(SIGNING_IDENTITY)\" $(SIGNING_FLAGS) \"$${APPBUNDLE}\"
dmg.commands = python -u \"$$PWD/scripts/makedmg.py\" \"$${BASENAME}.dmg\" \"Qt Creator\" \"$$IDE_SOURCE_TREE\" \"$$OUT_PWD/bin\"
#dmg.depends = deployqt
QMAKE_EXTRA_TARGETS += codesign dmg
} else {
BINDIST_SOURCE.release = "$(INSTALL_ROOT)$$QTC_PREFIX"
BINDIST_EXCLUDE_ARG.release = "--exclude-toplevel"
BINDIST_SOURCE.debug = $${BINDIST_SOURCE.release}
BINDIST_EXCLUDE_ARG.debug = $${BINDIST_EXCLUDE_ARG.release}
deployqt.commands = python -u $$PWD/scripts/deployqt.py -i \"$(INSTALL_ROOT)$$QTC_PREFIX/bin/$${IDE_APP_TARGET}\" \"$(QMAKE)\"
deployqt.depends = install
# legacy dummy target
win32: QMAKE_EXTRA_TARGETS += deployartifacts
}
INSTALLER_ARCHIVE_FROM_ENV = $$(INSTALLER_ARCHIVE)
isEmpty(INSTALLER_ARCHIVE_FROM_ENV) {
INSTALLER_ARCHIVE = $$OUT_PWD/$${BASENAME}-installer-archive.7z
} else {
INSTALLER_ARCHIVE = $$OUT_PWD/$$(INSTALLER_ARCHIVE)
}
INSTALLER_ARCHIVE_DEBUG = $$INSTALLER_ARCHIVE
INSTALLER_ARCHIVE_DEBUG ~= s/(.*)[.]7z/\1-debug.7z
bindist.commands = python -u $$PWD/scripts/createDistPackage.py $$OUT_PWD/$${BASENAME}.7z \"$${BINDIST_SOURCE.release}\"
bindist_installer.commands = python -u $$PWD/scripts/createDistPackage.py $${BINDIST_EXCLUDE_ARG.release} $${INSTALLER_ARCHIVE} \"$${BINDIST_SOURCE.release}\"
bindist_debug.commands = python -u $$PWD/scripts/createDistPackage.py --debug $${BINDIST_EXCLUDE_ARG.debug} $${INSTALLER_ARCHIVE_DEBUG} \"$${BINDIST_SOURCE.debug}\"
win32 {
deployqt.commands ~= s,/,\\\\,g
bindist.commands ~= s,/,\\\\,g
bindist_installer.commands ~= s,/,\\\\,g
}
deployqt.CONFIG += recursive
deployqt.recurse = src
QMAKE_EXTRA_TARGETS += deployqt bindist bindist_installer bindist_debug

View File

@ -1,44 +0,0 @@
# This pri file is used to deploy files that are not compiled while building
# Qt Creator. It handles copying of files into the build directory if using
# a shadow build and adds the respective install target as well.
#
# Usage: Define variables (details below) and include this pri file afterwards.
#
# STATIC_BASE - base directory for the files listed in STATIC_FILES
# STATIC_FILES - list of files to be deployed
# STATIC_OUTPUT_BASE - base directory in the compile output
# STATIC_INSTALL_BASE - base directory in the install output
# used in custom compilers which just copy files
defineReplace(stripStaticBase) {
return($$relative_path($$1, $$STATIC_BASE))
}
# handle conditional copying based on STATIC_BASE compared to STATIC_OUTPUT_BASE
!isEmpty(STATIC_FILES) {
isEmpty(STATIC_BASE): \
error("Using STATIC_FILES without having STATIC_BASE set")
isEmpty(STATIC_OUTPUT_BASE): \
error("Using STATIC_FILES without having STATIC_OUTPUT_BASE set")
!osx:isEmpty(STATIC_INSTALL_BASE): \
error("Using STATIC_FILES without having STATIC_INSTALL_BASE set")
!isEqual(STATIC_BASE, $$STATIC_OUTPUT_BASE) {
copy2build.input += STATIC_FILES
copy2build.output = $$STATIC_OUTPUT_BASE/${QMAKE_FUNC_FILE_IN_stripStaticBase}
isEmpty(vcproj):copy2build.variable_out = PRE_TARGETDEPS
win32:copy2build.commands = $$QMAKE_COPY \"${QMAKE_FILE_IN}\" \"${QMAKE_FILE_OUT}\"
unix:copy2build.commands = $$QMAKE_COPY ${QMAKE_FILE_IN} ${QMAKE_FILE_OUT}
copy2build.name = COPY ${QMAKE_FILE_IN}
copy2build.CONFIG += no_link no_clean
QMAKE_EXTRA_COMPILERS += copy2build
for(static_file, STATIC_FILES) {
QMAKE_DISTCLEAN += $$STATIC_OUTPUT_BASE/$$stripStaticBase($$static_file)
}
}
static.files = $$STATIC_FILES
static.base = $$STATIC_BASE
static.path = $$STATIC_INSTALL_BASE
INSTALLS += static
}

View File

@ -1,37 +0,0 @@
TEMPLATE = aux
include(../../qtcreator.pri)
STATIC_BASE = $$PWD
STATIC_OUTPUT_BASE = $$IDE_DATA_PATH
STATIC_INSTALL_BASE = $$INSTALL_DATA_PATH
DATA_DIRS = \
examplebrowser \
snippets \
templates \
themes \
designer \
schemes \
styles \
rss \
debugger \
qmldesigner \
qmlicons \
qml \
qml-type-descriptions \
modeleditor \
glsl \
cplusplus \
indexer_preincludes \
android
macx: DATA_DIRS += scripts
for(data_dir, DATA_DIRS) {
files = $$files($$PWD/$$data_dir/*, true)
# Info.plist.in are handled below
for(file, files):!contains(file, ".*/Info\\.plist\\.in$"):!contains(file, ".*__pycache__.*"):!exists($$file/*): \
STATIC_FILES += $$file
}
include(../../qtcreatordata.pri)

View File

@ -1,36 +0,0 @@
TEMPLATE = subdirs
isEmpty(JSONWIZARD_TR_H): JSONWIZARD_TR_H = $$OUT_PWD/jsonwizard_tr.h
isEmpty(TOP_LEVEL): TOP_LEVEL = "."
for(dir, $$list($$files($$TOP_LEVEL/*, true))): \
JSONWIZARD_FILES += $$files($$dir/wizard.json)
defineReplace(findToTranslate) {
ROOTKEY = $$1
OUTPUT = ""
for (KEY, $${ROOTKEY}._KEYS_) {
SUBKEY = $${ROOTKEY}.$${KEY}
MATCHED = $$find(KEY, ^tr[A-Z])
!isEmpty(MATCHED) {
VALUE = $$replace($${SUBKEY}, "\\n", "\\n")
VALUE ~= s,\",\\\",
OUTPUT += "QT_TRANSLATE_NOOP(\"ProjectExplorer::JsonWizard\", \"$${VALUE}\");"
}
OUTPUT += $$findToTranslate($${SUBKEY})
}
return($$OUTPUT)
}
WIZ_TRANS_FILE_CONT= \
"// This file is autogenerated by qmake."
for (FILE, JSONWIZARD_FILES) {
exists($$FILE) {
JSON = $$cat($$FILE, blob)
parseJson(JSON, WIZ)
WIZ_TRANS_FILE_CONT += $$findToTranslate(WIZ)
}
}
write_file($$JSONWIZARD_TR_H, WIZ_TRANS_FILE_CONT)|error("Aborting")

View File

@ -1,117 +0,0 @@
TEMPLATE = aux
include(../../../qtcreator.pri)
LANGUAGES = cs da de fr hr ja pl ru sl uk zh_CN zh_TW
# *do not* re-enable these without a prior rework
BAD_LANGUAGES = hu
# var, prepend, append
defineReplace(prependAll) {
for(a,$$1):result += $$2$${a}$$3
return($$result)
}
XMLPATTERNS = $$shell_path($$[QT_INSTALL_BINS]/xmlpatterns)
LUPDATE = $$shell_path($$[QT_INSTALL_BINS]/lupdate) -locations relative -no-ui-lines -no-sort
LRELEASE = $$shell_path($$[QT_INSTALL_BINS]/lrelease)
LCONVERT = $$shell_path($$[QT_INSTALL_BINS]/lconvert)
wd = $$replace(IDE_SOURCE_TREE, /, $$QMAKE_DIR_SEP)
TRANSLATIONS = $$prependAll(LANGUAGES, $$PWD/qtcreator_,.ts)
CUSTOMWIZARD_TR_H = $$OUT_PWD/customwizard_tr.h
JSONWIZARD_TR_H = $$OUT_PWD/jsonwizard_tr.h
EXTERNALTOOLS_TR_H = $$OUT_PWD/externaltools_tr.h
SNIPPETS_TR_H = $$OUT_PWD/snippets_tr.h
win32: \
PREFIX = "file:///"
else: \
PREFIX = "file://"
for(dir, $$list($$files($$IDE_SOURCE_TREE/share/qtcreator/templates/wizards/*, true))):CUSTOMWIZARD_FILES += $$files($$dir/wizard.xml)
CUSTOMWIZARD_FILES = \"$$join(CUSTOMWIZARD_FILES, "|$$PREFIX", "$$PREFIX")\"
for(file, $$list($$files($$IDE_SOURCE_TREE/src/share/qtcreator/externaltools/*.xml))):EXTERNALTOOLS_FILES += $$files($$file)
EXTERNALTOOLS_FILES = \"$$join(EXTERNALTOOLS_FILES, "|$$PREFIX", "$$PREFIX")\"
for(file, $$list($$files($$IDE_SOURCE_TREE/share/qtcreator/snippets/*))):SNIPPETS_FILES += $$files($$file)
SNIPPETS_FILES = \"$$join(SNIPPETS_FILES, "|$$PREFIX", "$$PREFIX")\"
extract.commands += \
$$XMLPATTERNS -output $$CUSTOMWIZARD_TR_H -param files=$$CUSTOMWIZARD_FILES $$PWD/extract-customwizards.xq $$escape_expand(\\n\\t) \
$$XMLPATTERNS -output $$EXTERNALTOOLS_TR_H -param files=$$EXTERNALTOOLS_FILES $$PWD/extract-externaltools.xq $$escape_expand(\\n\\t) \
$$XMLPATTERNS -output $$SNIPPETS_TR_H -param files=$$SNIPPETS_FILES $$PWD/extract-snippets.xq $$escape_expand(\\n\\t) \
$(QMAKE) -o Makefile.jsonwizard JSONWIZARD_TR_H=\"$$JSONWIZARD_TR_H\" TOP_LEVEL=\"$$IDE_SOURCE_TREE/share/qtcreator/templates/wizards\" $$PWD/jsonwizard_tr.pro
QMAKE_EXTRA_TARGETS += extract
plugin_sources = $$files($$IDE_SOURCE_TREE/src/plugins/*)
plugin_sources ~= s,^$$re_escape($$IDE_SOURCE_TREE/),,g$$i_flag
plugin_sources -= src/plugins/plugins.pro \
src/CMakeLists.txt \
src/plugins/helloworld
shared_sources = $$files($$IDE_SOURCE_TREE/src/shared/*)
shared_sources ~= s,^$$re_escape($$IDE_SOURCE_TREE/),,g$$i_flag
shared_sources -= \
src/CMakeLists.txt \
src/shared/qbs \
src/shared/shared.pro
sources = src/app src/libs $$plugin_sources $$shared_sources share/qtcreator/qmldesigner
for(path, INCLUDEPATH): include_options *= -I$$shell_quote($$path)
files = $$files($$PWD/*_??.ts) $$PWD/qtcreator_untranslated.ts
for(file, files) {
lang = $$replace(file, .*_([^/]*)\\.ts, \\1)
v = ts-$${lang}.commands
$$v = cd $$wd && $$LUPDATE $$include_options $$sources $$CUSTOMWIZARD_TR_H $$JSONWIZARD_TR_H $$EXTERNALTOOLS_TR_H $$SNIPPETS_TR_H -ts $$file
v = ts-$${lang}.depends
$$v = extract
QMAKE_EXTRA_TARGETS += ts-$$lang
}
ts-all.commands = cd $$wd && $$LUPDATE $$include_options $$sources $$CUSTOMWIZARD_TR_H $$JSONWIZARD_TR_H $$EXTERNALTOOLS_TR_H $$SNIPPETS_TR_H -ts $$files
ts-all.depends = extract
QMAKE_EXTRA_TARGETS += ts-all
check-ts.commands = (cd $$replace(PWD, /, $$QMAKE_DIR_SEP) && perl check-ts.pl)
check-ts.depends = ts-all
QMAKE_EXTRA_TARGETS += check-ts
isEqual(QMAKE_DIR_SEP, /) {
commit-ts.commands = \
cd $$wd; \
git add -N share/qtcreator/translations/*_??.ts && \
for f in `git diff-files --name-only share/qtcreator/translations/*_??.ts`; do \
$$LCONVERT -locations none -i \$\$f -o \$\$f; \
done; \
git add share/qtcreator/translations/*_??.ts && git commit
} else {
commit-ts.commands = \
cd $$wd && \
git add -N share/qtcreator/translations/*_??.ts && \
for /f usebackq %%f in (`git diff-files --name-only share/qtcreator/translations/*_??.ts`) do \
$$LCONVERT -locations none -i %%f -o %%f $$escape_expand(\\n\\t) \
cd $$wd && git add share/qtcreator/translations/*_??.ts && git commit
}
QMAKE_EXTRA_TARGETS += commit-ts
ts.commands = \
@echo \"The \'ts\' target has been removed in favor of more fine-grained targets.\" && \
echo \"Use \'ts-<lang>\' instead. To add a language, use \'ts-untranslated\',\" && \
echo \"rename the file and re-run \'qmake\'.\"
QMAKE_EXTRA_TARGETS += ts
updateqm.input = TRANSLATIONS
updateqm.output = $$IDE_DATA_PATH/translations/${QMAKE_FILE_BASE}.qm
isEmpty(vcproj):updateqm.variable_out = PRE_TARGETDEPS
updateqm.commands = $$LRELEASE ${QMAKE_FILE_IN} -qm ${QMAKE_FILE_OUT}
updateqm.name = LRELEASE ${QMAKE_FILE_IN}
updateqm.CONFIG += no_link
QMAKE_EXTRA_COMPILERS += updateqm
qmfiles.files = $$prependAll(LANGUAGES, $$IDE_DATA_PATH/translations/qtcreator_,.qm)
qmfiles.path = $$INSTALL_DATA_PATH/translations
qmfiles.CONFIG += no_check_exist
INSTALLS += qmfiles

View File

@ -1,37 +0,0 @@
TEMPLATE = subdirs
SUBDIRS = qtcreator/static.pro
include(../qtcreator.pri)
linux {
appdata = $$cat($$PWD/metainfo/org.qt-project.qtcreator.appdata.xml.cmakein, blob)
appdata = $$replace(appdata, \\$\\{IDE_VERSION_DISPLAY\\}, $$QTCREATOR_DISPLAY_VERSION)
appdata = $$replace(appdata, \\$\\{DATE_ATTRIBUTE\\}, "")
write_file($$OUT_PWD/metainfo/org.qt-project.qtcreator.appdata.xml, appdata)
appstream.files = $$OUT_PWD/metainfo/org.qt-project.qtcreator.appdata.xml
appstream.path = $$QTC_PREFIX/share/metainfo/
desktop.files = share/applications/org.qt-project.qtcreator.desktop
desktop.path = $$QTC_PREFIX/share/applications/
INSTALLS += appstream desktop
}
defineTest(hasLupdate) {
cmd = $$eval(QT_TOOL.lupdate.binary)
isEmpty(cmd) {
cmd = $$[QT_HOST_BINS]/lupdate
contains(QMAKE_HOST.os, Windows):exists($${cmd}.exe): return(true)
contains(QMAKE_HOST.os, Darwin):exists($${cmd}.app/Contents/MacOS/lupdate): return(true)
exists($$cmd): return(true)
} else {
exists($$last(cmd)): return(true)
}
return(false)
}
hasLupdate(): SUBDIRS += qtcreator/translations
DISTFILES += share.qbs \
../src/share/share.qbs

View File

@ -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

View File

@ -1,69 +0,0 @@
HEADERS += \
$$PWD/cppassert.h \
$$PWD/CPlusPlus.h \
$$PWD/AST.h \
$$PWD/ASTVisitor.h \
$$PWD/ASTMatcher.h \
$$PWD/ASTPatternBuilder.h \
$$PWD/ASTfwd.h \
$$PWD/Matcher.h \
$$PWD/CPlusPlusForwardDeclarations.h \
$$PWD/Control.h \
$$PWD/CoreTypes.h \
$$PWD/DiagnosticClient.h \
$$PWD/FullySpecifiedType.h \
$$PWD/Lexer.h \
$$PWD/LiteralTable.h \
$$PWD/Literals.h \
$$PWD/MemoryPool.h \
$$PWD/Name.h \
$$PWD/NameVisitor.h \
$$PWD/Names.h \
$$PWD/Parser.h \
$$PWD/Scope.h \
$$PWD/Bind.h \
$$PWD/Symbol.h \
$$PWD/Symbols.h \
$$PWD/SymbolVisitor.h \
$$PWD/Token.h \
$$PWD/TranslationUnit.h \
$$PWD/Type.h \
$$PWD/TypeVisitor.h \
$$PWD/ObjectiveCTypeQualifiers.h \
$$PWD/QtContextKeywords.h \
$$PWD/Templates.h \
$$PWD/SafeMatcher.h
SOURCES += \
$$PWD/AST.cpp \
$$PWD/ASTVisit.cpp \
$$PWD/ASTMatch0.cpp \
$$PWD/ASTVisitor.cpp \
$$PWD/ASTClone.cpp \
$$PWD/ASTMatcher.cpp \
$$PWD/Matcher.cpp \
$$PWD/Control.cpp \
$$PWD/CoreTypes.cpp \
$$PWD/DiagnosticClient.cpp \
$$PWD/FullySpecifiedType.cpp \
$$PWD/Keywords.cpp \
$$PWD/ObjectiveCAtKeywords.cpp \
$$PWD/ObjectiveCTypeQualifiers.cpp \
$$PWD/Lexer.cpp \
$$PWD/Literals.cpp \
$$PWD/MemoryPool.cpp \
$$PWD/Name.cpp \
$$PWD/NameVisitor.cpp \
$$PWD/Names.cpp \
$$PWD/Parser.cpp \
$$PWD/Scope.cpp \
$$PWD/Bind.cpp \
$$PWD/Symbol.cpp \
$$PWD/Symbols.cpp \
$$PWD/Token.cpp \
$$PWD/TranslationUnit.cpp \
$$PWD/Type.cpp \
$$PWD/TypeVisitor.cpp \
$$PWD/QtContextKeywords.cpp \
$$PWD/Templates.cpp \
$$PWD/SafeMatcher.cpp

View File

@ -1,17 +0,0 @@
INCLUDEPATH *= $$PWD
linux:DEFINES += _POSIX_C_SOURCE=200809L _GNU_SOURCE
osx:DEFINES += _BSD_SOURCE
HEADERS += $$PWD/sqlite3.h \
$$PWD/config.h \
$$PWD/sqlite.h \
$$PWD/sqlite3ext.h
SOURCES += $$PWD/sqlite3.c \
$$PWD/carray.c
gcc {
QMAKE_CFLAGS_WARN_ON = -w
}

View File

@ -43,9 +43,6 @@ add_qtc_library(KSyntaxHighlighting SHARED
src/lib/xml_p.h
)
qtc_add_public_header(autogenerated/src/lib/State)
# transitional qmake plugin build support
qtc_add_public_header(${CMAKE_CURRENT_SOURCE_DIR}/../../../shared/syntax/syntax_shared.pri)
qtc_add_public_header(syntax-highlighting_dependencies.pri)
if(TARGET KSyntaxHighlighting)
install(

View File

@ -1,10 +0,0 @@
INCLUDEPATH *= $$PWD/src/lib
INCLUDEPATH *= $$PWD
SOURCES += \
$$PWD/src/lib/ksyntaxhighlighting_logging.cpp
HEADERS += \
$$PWD/ksyntaxhighlighting_version.h \
$$PWD/src/lib/ksyntaxhighlighting_logging.h \
$$PWD/src/lib/ksyntaxhighlighting_export.h

View File

@ -1,11 +0,0 @@
TEMPLATE = aux
include(../../../../../qtcreator.pri)
STATIC_BASE = $$PWD
STATIC_OUTPUT_BASE = $$IDE_DATA_PATH/generic-highlighter
STATIC_INSTALL_BASE = $$INSTALL_DATA_PATH/generic-highlighter
STATIC_FILES += $$files($$PWD/syntax/*, true)
include(../../../../../qtcreatordata.pri)

View File

@ -1,56 +0,0 @@
include(../../../qtcreatorlibrary.pri)
include(autogenerated/autogenerated.pri)
QT += network
DEFINES += KF5SyntaxHighlighting_EXPORTS
RESOURCES += \
data/themes/theme-data.qrc
HEADERS += \
src/lib/abstracthighlighter.h \
src/lib/abstracthighlighter_p.h \
src/lib/context_p.h \
src/lib/contextswitch_p.h \
src/lib/definition.h \
src/lib/definition_p.h \
src/lib/definitiondownloader.h \
src/lib/definitionref_p.h \
src/lib/foldingregion.h \
src/lib/format.h \
src/lib/format_p.h \
src/lib/htmlhighlighter.h \
src/lib/keywordlist_p.h \
src/lib/matchresult_p.h \
src/lib/repository.h \
src/lib/repository_p.h \
src/lib/rule_p.h \
src/lib/state.h \
src/lib/state_p.h \
src/lib/syntaxhighlighter.h \
src/lib/textstyledata_p.h \
src/lib/theme.h \
src/lib/themedata_p.h \
src/lib/wildcardmatcher_p.h \
src/lib/worddelimiters_p.h \
src/lib/xml_p.h \
SOURCES += \
src/lib/abstracthighlighter.cpp \
src/lib/context.cpp \
src/lib/contextswitch.cpp \
src/lib/definition.cpp \
src/lib/definitiondownloader.cpp \
src/lib/foldingregion.cpp \
src/lib/format.cpp \
src/lib/htmlhighlighter.cpp \
src/lib/keywordlist.cpp \
src/lib/repository.cpp \
src/lib/rule.cpp \
src/lib/state.cpp \
src/lib/syntaxhighlighter.cpp \
src/lib/theme.cpp \
src/lib/themedata.cpp \
src/lib/wildcardmatcher.cpp \
src/lib/worddelimiters.cpp \

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = KSyntaxHighlighting
INCLUDEPATH *= $$PWD/src/lib
INCLUDEPATH *= $$PWD/autogenerated/src/lib

View File

@ -1,89 +0,0 @@
INCLUDEPATH += $$PWD/include/
HEADERS += \
$$PWD/include/yaml-cpp/anchor.h \
$$PWD/include/yaml-cpp/binary.h \
$$PWD/include/yaml-cpp/dll.h \
$$PWD/include/yaml-cpp/emitfromevents.h \
$$PWD/include/yaml-cpp/emitter.h \
$$PWD/include/yaml-cpp/emitterdef.h \
$$PWD/include/yaml-cpp/emittermanip.h \
$$PWD/include/yaml-cpp/emitterstyle.h \
$$PWD/include/yaml-cpp/eventhandler.h \
$$PWD/include/yaml-cpp/exceptions.h \
$$PWD/include/yaml-cpp/mark.h \
$$PWD/include/yaml-cpp/node/convert.h \
$$PWD/include/yaml-cpp/node/detail/bool_type.h \
$$PWD/include/yaml-cpp/node/detail/impl.h \
$$PWD/include/yaml-cpp/node/detail/iterator.h \
$$PWD/include/yaml-cpp/node/detail/iterator_fwd.h \
$$PWD/include/yaml-cpp/node/detail/memory.h \
$$PWD/include/yaml-cpp/node/detail/node.h \
$$PWD/include/yaml-cpp/node/detail/node_data.h \
$$PWD/include/yaml-cpp/node/detail/node_iterator.h \
$$PWD/include/yaml-cpp/node/detail/node_ref.h \
$$PWD/include/yaml-cpp/node/emit.h \
$$PWD/include/yaml-cpp/node/impl.h \
$$PWD/include/yaml-cpp/node/iterator.h \
$$PWD/include/yaml-cpp/node/node.h \
$$PWD/include/yaml-cpp/node/parse.h \
$$PWD/include/yaml-cpp/node/ptr.h \
$$PWD/include/yaml-cpp/node/type.h \
$$PWD/include/yaml-cpp/noncopyable.h \
$$PWD/include/yaml-cpp/null.h \
$$PWD/include/yaml-cpp/ostream_wrapper.h \
$$PWD/include/yaml-cpp/parser.h \
$$PWD/include/yaml-cpp/stlemitter.h \
$$PWD/include/yaml-cpp/traits.h \
$$PWD/include/yaml-cpp/yaml.h \
$$PWD/src/collectionstack.h \
$$PWD/src/directives.h \
$$PWD/src/emitterstate.h \
$$PWD/src/emitterutils.h \
$$PWD/src/exp.h \
$$PWD/src/indentation.h \
$$PWD/src/nodebuilder.h \
$$PWD/src/nodeevents.h \
$$PWD/src/ptr_vector.h \
$$PWD/src/regex_yaml.h \
$$PWD/src/regeximpl.h \
$$PWD/src/scanner.h \
$$PWD/src/scanscalar.h \
$$PWD/src/scantag.h \
$$PWD/src/setting.h \
$$PWD/src/singledocparser.h \
$$PWD/src/stream.h \
$$PWD/src/streamcharsource.h \
$$PWD/src/stringsource.h \
$$PWD/src/tag.h \
$$PWD/src/token.h \
SOURCES += \
$$PWD/src/binary.cpp \
$$PWD/src/convert.cpp \
$$PWD/src/directives.cpp \
$$PWD/src/emit.cpp \
$$PWD/src/emitfromevents.cpp \
$$PWD/src/emitter.cpp \
$$PWD/src/emitterstate.cpp \
$$PWD/src/emitterutils.cpp \
$$PWD/src/exceptions.cpp \
$$PWD/src/exp.cpp \
$$PWD/src/memory.cpp \
$$PWD/src/node.cpp \
$$PWD/src/node_data.cpp \
$$PWD/src/nodebuilder.cpp \
$$PWD/src/nodeevents.cpp \
$$PWD/src/null.cpp \
$$PWD/src/ostream_wrapper.cpp \
$$PWD/src/parse.cpp \
$$PWD/src/parser.cpp \
$$PWD/src/regex_yaml.cpp \
$$PWD/src/scanner.cpp \
$$PWD/src/scanscalar.cpp \
$$PWD/src/scantag.cpp \
$$PWD/src/scantoken.cpp \
$$PWD/src/simplekey.cpp \
$$PWD/src/singledocparser.cpp \
$$PWD/src/stream.cpp \
$$PWD/src/tag.cpp \

View File

@ -1,5 +0,0 @@
include(../../../qtcreatorlibrary.pri)
include(yaml-cpp.pri)
DEFINES += YAML_CPP_DLL yaml_cpp_EXPORTS

View File

@ -1,2 +0,0 @@
QTC_LIB_NAME = yaml-cpp
INCLUDEPATH *= $$PWD/include

View File

@ -1,57 +0,0 @@
shared {
DEFINES += ADVANCEDDOCKINGSYSTEM_LIBRARY
} else {
DEFINES += BUILD_ADVANCEDDOCKINGSYSTEM_STATIC_LIB
}
## Input
HEADERS += \
ads_globals.h \
dockareatabbar.h \
dockareatitlebar.h \
dockareawidget.h \
dockcomponentsfactory.h \
dockcontainerwidget.h \
dockfocuscontroller.h \
dockingstatereader.h \
dockmanager.h \
dockoverlay.h \
docksplitter.h \
dockwidget.h \
dockwidgettab.h \
elidinglabel.h \
floatingdockcontainer.h \
floatingdragpreview.h \
iconprovider.h \
workspacedialog.h \
workspacemodel.h \
workspaceview.h
SOURCES += \
ads_globals.cpp \
dockareatabbar.cpp \
dockareatitlebar.cpp \
dockareawidget.cpp \
dockcomponentsfactory.cpp \
dockcontainerwidget.cpp \
dockfocuscontroller.cpp \
dockingstatereader.cpp \
dockmanager.cpp \
dockoverlay.cpp \
docksplitter.cpp \
dockwidget.cpp \
dockwidgettab.cpp \
elidinglabel.cpp \
floatingdockcontainer.cpp \
floatingdragpreview.cpp \
iconprovider.cpp \
workspacedialog.cpp \
workspacemodel.cpp \
workspaceview.cpp
FORMS += \
workspacedialog.ui
include(linux/linux.pri)
DISTFILES += advanceddockingsystem.pri

View File

@ -1,6 +0,0 @@
unix:QMAKE_CXXFLAGS_DEBUG += -O3
INCLUDEPATH += $$PWD $$PWD/linux
include(../../qtcreatorlibrary.pri)
include(advanceddockingsystem-lib.pri)

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = AdvancedDockingSystem
QTC_LIB_DEPENDS += utils
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/advanceddockingsystem

View File

@ -1,4 +0,0 @@
VPATH += $$PWD
SOURCES += $$PWD/floatingwidgettitlebar.cpp
HEADERS += $$PWD/floatingwidgettitlebar.h

View File

@ -1,9 +0,0 @@
include(../../qtcreatorlibrary.pri)
DEFINES += AGGREGATION_LIBRARY
HEADERS = aggregate.h \
aggregation_global.h
SOURCES = aggregate.cpp

View File

@ -1 +0,0 @@
QTC_LIB_NAME = Aggregation

View File

@ -1,3 +0,0 @@
TEMPLATE = subdirs
SUBDIRS = text

View File

@ -1,14 +0,0 @@
TARGET = text
TEMPLATE = app
QT += core \
gui
DEFINES += AGGREGATION_LIBRARY
INCLUDEPATH += ../../
SOURCES += main.cpp \
../../aggregate.cpp
HEADERS += main.h \
myinterfaces.h \
../../aggregate.h \
../../aggregation_global.h
FORMS += main.ui

View File

@ -1,117 +0,0 @@
shared {
DEFINES += CLANGSUPPORT_BUILD_LIB
} else {
DEFINES += CLANGSUPPORT_BUILD_STATIC_LIB
}
QT += network
INCLUDEPATH += $$PWD
SOURCES += \
$$PWD/clangsupportdebugutils.cpp \
$$PWD/clangcodemodelclientinterface.cpp \
$$PWD/clangcodemodelclientproxy.cpp \
$$PWD/clangcodemodelconnectionclient.cpp \
$$PWD/clangcodemodelserverinterface.cpp \
$$PWD/clangcodemodelserverproxy.cpp \
$$PWD/alivemessage.cpp \
$$PWD/completionsmessage.cpp \
$$PWD/requestcompletionsmessage.cpp \
$$PWD/echomessage.cpp \
$$PWD/endmessage.cpp \
$$PWD/documentsopenedmessage.cpp \
$$PWD/documentsclosedmessage.cpp \
$$PWD/codecompletionchunk.cpp \
$$PWD/codecompletion.cpp \
$$PWD/connectionclient.cpp \
$$PWD/connectionserver.cpp \
$$PWD/diagnosticcontainer.cpp \
$$PWD/annotationsmessage.cpp \
$$PWD/filecontainer.cpp \
$$PWD/fixitcontainer.cpp \
$$PWD/followsymbolmessage.cpp \
$$PWD/lineprefixer.cpp \
$$PWD/messageenvelop.cpp \
$$PWD/readmessageblock.cpp \
$$PWD/referencesmessage.cpp \
$$PWD/unsavedfilesupdatedmessage.cpp \
$$PWD/requestannotationsmessage.cpp \
$$PWD/requestfollowsymbolmessage.cpp \
$$PWD/requestreferencesmessage.cpp \
$$PWD/requesttooltipmessage.cpp \
$$PWD/sourcelocationcontainer.cpp \
$$PWD/sourcelocationscontainer.cpp \
$$PWD/sourcerangecontainer.cpp \
$$PWD/processcreator.cpp \
$$PWD/processexception.cpp \
$$PWD/processstartedevent.cpp \
$$PWD/tokeninfocontainer.cpp \
$$PWD/tooltipmessage.cpp \
$$PWD/tooltipinfo.cpp \
$$PWD/unsavedfilesremovedmessage.cpp \
$$PWD/utf8string.cpp \
$$PWD/utf8stringvector.cpp \
$$PWD/documentschangedmessage.cpp \
$$PWD/documentvisibilitychangedmessage.cpp \
$$PWD/writemessageblock.cpp \
$$PWD/baseserverproxy.cpp
HEADERS += \
$$PWD/clangsupportdebugutils.h \
$$PWD/clangsupport_global.h \
$$PWD/clangcodemodelclientinterface.h \
$$PWD/clangcodemodelclientmessages.h \
$$PWD/clangcodemodelclientproxy.h \
$$PWD/clangcodemodelconnectionclient.h \
$$PWD/clangcodemodelserverinterface.h \
$$PWD/clangcodemodelservermessages.h \
$$PWD/clangcodemodelserverproxy.h \
$$PWD/alivemessage.h \
$$PWD/completionsmessage.h \
$$PWD/requestcompletionsmessage.h \
$$PWD/echomessage.h \
$$PWD/endmessage.h \
$$PWD/documentsopenedmessage.h \
$$PWD/documentsclosedmessage.h \
$$PWD/codecompletionchunk.h \
$$PWD/codecompletion.h \
$$PWD/connectionclient.h \
$$PWD/connectionserver.h \
$$PWD/diagnosticcontainer.h \
$$PWD/annotationsmessage.h \
$$PWD/filecontainer.h \
$$PWD/fixitcontainer.h \
$$PWD/followsymbolmessage.h \
$$PWD/ipcclientinterface.h \
$$PWD/ipcinterface.h \
$$PWD/ipcserverinterface.h \
$$PWD/lineprefixer.h \
$$PWD/messageenvelop.h \
$$PWD/readmessageblock.h \
$$PWD/referencesmessage.h \
$$PWD/unsavedfilesupdatedmessage.h \
$$PWD/requestannotationsmessage.h \
$$PWD/requestfollowsymbolmessage.h \
$$PWD/requestreferencesmessage.h \
$$PWD/requesttooltipmessage.h \
$$PWD/sourcelocationcontainer.h \
$$PWD/sourcelocationscontainer.h \
$$PWD/sourcerangecontainer.h \
$$PWD/processcreator.h \
$$PWD/processexception.h \
$$PWD/processhandle.h \
$$PWD/processstartedevent.h \
$$PWD/tokeninfocontainer.h \
$$PWD/tooltipmessage.h \
$$PWD/tooltipinfo.h \
$$PWD/unsavedfilesremovedmessage.h \
$$PWD/utf8string.h \
$$PWD/utf8stringvector.h \
$$PWD/documentschangedmessage.h \
$$PWD/documentvisibilitychangedmessage.h \
$$PWD/writemessageblock.h \
$$PWD/ipcclientprovider.h \
$$PWD/baseserverproxy.h
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols

View File

@ -1,4 +0,0 @@
include(../../qtcreatorlibrary.pri)
include(clangsupport-lib.pri)
HEADERS +=

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = Clangsupport
QTC_LIB_DEPENDS += sqlite utils
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/clangsupport

View File

@ -1,86 +0,0 @@
shared {
DEFINES += CPLUSPLUS_BUILD_LIB
} else {
DEFINES += CPLUSPLUS_BUILD_STATIC_LIB
}
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/3rdparty
include(../3rdparty/cplusplus/cplusplus.pri)
QT += concurrent
#DEFINES += DEBUG_INCLUDE_GUARD_TRACKING
contains(QT, gui) {
HEADERS += \
$$PWD/Icons.h \
$$PWD/ExpressionUnderCursor.h \
$$PWD/BackwardsScanner.h \
$$PWD/MatchingText.h
SOURCES += \
$$PWD/Icons.cpp \
$$PWD/ExpressionUnderCursor.cpp \
$$PWD/BackwardsScanner.cpp \
$$PWD/MatchingText.cpp
}
HEADERS += \
$$PWD/SimpleLexer.h \
$$PWD/CppDocument.h \
$$PWD/CppRewriter.h \
$$PWD/Overview.h \
$$PWD/NamePrettyPrinter.h \
$$PWD/TypeOfExpression.h \
$$PWD/TypePrettyPrinter.h \
$$PWD/ResolveExpression.h \
$$PWD/LookupItem.h \
$$PWD/AlreadyConsideredClassContainer.h \
$$PWD/LookupContext.h \
$$PWD/ASTParent.h \
$$PWD/ASTPath.h \
$$PWD/SnapshotSymbolVisitor.h \
$$PWD/SymbolNameVisitor.h \
$$PWD/DeprecatedGenTemplateInstance.h \
$$PWD/FindUsages.h \
$$PWD/DependencyTable.h \
$$PWD/PreprocessorClient.h \
$$PWD/PreprocessorEnvironment.h \
$$PWD/Macro.h \
$$PWD/FastPreprocessor.h \
$$PWD/pp.h \
$$PWD/pp-cctype.h \
$$PWD/pp-engine.h \
$$PWD/pp-scanner.h \
$$PWD/findcdbbreakpoint.h \
$$PWD/PPToken.h \
$$PWD/cppmodelmanagerbase.h
SOURCES += \
$$PWD/SimpleLexer.cpp \
$$PWD/CppDocument.cpp \
$$PWD/CppRewriter.cpp \
$$PWD/Overview.cpp \
$$PWD/NamePrettyPrinter.cpp \
$$PWD/TypeOfExpression.cpp \
$$PWD/TypePrettyPrinter.cpp \
$$PWD/ResolveExpression.cpp \
$$PWD/LookupItem.cpp \
$$PWD/LookupContext.cpp \
$$PWD/ASTParent.cpp \
$$PWD/ASTPath.cpp \
$$PWD/SnapshotSymbolVisitor.cpp \
$$PWD/SymbolNameVisitor.cpp \
$$PWD/DeprecatedGenTemplateInstance.cpp \
$$PWD/FindUsages.cpp \
$$PWD/DependencyTable.cpp \
$$PWD/PreprocessorClient.cpp \
$$PWD/PreprocessorEnvironment.cpp \
$$PWD/FastPreprocessor.cpp \
$$PWD/Macro.cpp \
$$PWD/pp-engine.cpp \
$$PWD/pp-scanner.cpp \
$$PWD/findcdbbreakpoint.cpp \
$$PWD/PPToken.cpp \
$$PWD/cppmodelmanagerbase.cpp

View File

@ -1,6 +0,0 @@
DEFINES += NDEBUG
unix:QMAKE_CXXFLAGS_DEBUG += -O2
win32:QMAKE_CXXFLAGS_DEBUG += -O2
include(../../qtcreatorlibrary.pri)
include(cplusplus-lib.pri)

View File

@ -1,4 +0,0 @@
QTC_LIB_NAME = CPlusPlus
QTC_LIB_DEPENDS += \
utils
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/3rdparty

View File

@ -1,37 +0,0 @@
DEFINES += EXTENSIONSYSTEM_LIBRARY
include(../../qtcreatorlibrary.pri)
unix:LIBS += $$QMAKE_LIBS_DYNLOAD
!isEmpty(vcproj) {
DEFINES += IDE_TEST_DIR=\"$$IDE_SOURCE_TREE\"
} else {
DEFINES += IDE_TEST_DIR=\\\"$$IDE_SOURCE_TREE\\\"
}
HEADERS += pluginerrorview.h \
plugindetailsview.h \
invoker.h \
iplugin.h \
iplugin_p.h \
extensionsystem_global.h \
pluginmanager.h \
pluginmanager_p.h \
pluginspec.h \
pluginspec_p.h \
pluginview.h \
optionsparser.h \
pluginerroroverview.h
SOURCES += pluginerrorview.cpp \
plugindetailsview.cpp \
invoker.cpp \
iplugin.cpp \
pluginmanager.cpp \
pluginspec.cpp \
pluginview.cpp \
optionsparser.cpp \
pluginerroroverview.cpp
FORMS += \
pluginerrorview.ui \
plugindetailsview.ui \
pluginerroroverview.ui

View File

@ -1,4 +0,0 @@
QTC_LIB_NAME = ExtensionSystem
QTC_LIB_DEPENDS += \
aggregation \
utils

View File

@ -1,9 +0,0 @@
HEADERS += $$PWD/glsl.h $$PWD/glsllexer.h $$PWD/glslparser.h $$PWD/glslparsertable_p.h $$PWD/glslast.h \
$$PWD/glslastvisitor.h $$PWD/glslengine.h $$PWD/glslmemorypool.h $$PWD/glslastdump.h \
$$PWD/glslsemantic.h $$PWD/glsltype.h $$PWD/glsltypes.h $$PWD/glslsymbol.h $$PWD/glslsymbols.h
SOURCES += $$PWD/glslkeywords.cpp $$PWD/glslparser.cpp $$PWD/glslparsertable.cpp \
$$PWD/glsllexer.cpp $$PWD/glslast.cpp \
$$PWD/glslastvisitor.cpp $$PWD/glslengine.cpp $$PWD/glslmemorypool.cpp $$PWD/glslastdump.cpp \
$$PWD/glslsemantic.cpp $$PWD/glsltype.cpp $$PWD/glsltypes.cpp $$PWD/glslsymbol.cpp $$PWD/glslsymbols.cpp
DISTFILES = $$PWD/glsl.g

View File

@ -1,5 +0,0 @@
DEFINES += \
GLSL_LIBRARY
include(../../qtcreatorlibrary.pri)
include(glsl-lib.pri)

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = GLSL
QTC_LIB_DEPENDS += \
utils

View File

@ -1,45 +0,0 @@
include(../../qtcreatorlibrary.pri)
DEFINES += LANGUAGESERVERPROTOCOL_LIBRARY
HEADERS += \
basemessage.h \
client.h \
clientcapabilities.h \
completion.h \
diagnostics.h \
icontent.h \
initializemessages.h \
jsonobject.h \
jsonrpcmessages.h \
languagefeatures.h \
languageserverprotocol_global.h \
lsptypes.h \
lsputils.h \
messages.h \
progresssupport.h \
semantictokens.h \
servercapabilities.h \
shutdownmessages.h \
textsynchronization.h \
workspace.h \
SOURCES += \
basemessage.cpp \
client.cpp \
clientcapabilities.cpp \
completion.cpp \
diagnostics.cpp \
initializemessages.cpp \
jsonobject.cpp \
jsonrpcmessages.cpp \
languagefeatures.cpp \
lsptypes.cpp \
lsputils.cpp \
messages.cpp \
progresssupport.cpp \
semantictokens.cpp \
servercapabilities.cpp \
shutdownmessages.cpp \
textsynchronization.cpp \
workspace.cpp \

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = LanguageServerProtocol
QTC_LIB_DEPENDS += utils

View File

@ -1,14 +0,0 @@
shared {
DEFINES += LANGUAGEUTILS_LIBRARY
} else {
DEFINES += LANGUAGEUTILS_BUILD_STATIC_LIB
}
HEADERS += \
$$PWD/languageutils_global.h \
$$PWD/fakemetaobject.h \
$$PWD/componentversion.h
SOURCES += \
$$PWD/fakemetaobject.cpp \
$$PWD/componentversion.cpp

View File

@ -1,4 +0,0 @@
unix:QMAKE_CXXFLAGS_DEBUG += -O3
include(../../qtcreatorlibrary.pri)
include(languageutils-lib.pri)

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = LanguageUtils
QTC_LIB_DEPENDS += \
utils

View File

@ -1,72 +0,0 @@
include(../../qtcreator.pri)
TEMPLATE = subdirs
SUBDIRS += \
aggregation \
extensionsystem \
utils \
languageutils \
cplusplus \
modelinglib \
qmljs \
qmldebug \
qmleditorwidgets \
glsl \
ssh \
clangsupport \
languageserverprotocol \
sqlite
qtHaveModule(quick) {
SUBDIRS += \
tracing
}
QTC_DO_NOT_BUILD_QMLDESIGNER = $$(QTC_DO_NOT_BUILD_QMLDESIGNER)
isEmpty(QTC_DO_NOT_BUILD_QMLDESIGNER):qtHaveModule(quick-private) {
exists($$[QT_INSTALL_QML]/QtQuick/Controls/qmldir) {
SUBDIRS += advanceddockingsystem
}
}
for(l, SUBDIRS) {
QTC_LIB_DEPENDS =
include($$l/$${l}_dependencies.pri)
lv = $${l}.depends
$$lv = $$QTC_LIB_DEPENDS
}
SUBDIRS += \
utils/process_stub.pro
include(../shared/yaml-cpp/yaml-cpp_installation.pri)
isEmpty(EXTERNAL_YAML_CPP_FOUND): SUBDIRS += 3rdparty/yaml-cpp
isEmpty(KSYNTAXHIGHLIGHTING_LIB_DIR): KSYNTAXHIGHLIGHTING_LIB_DIR=$$(KSYNTAXHIGHLIGHTING_LIB_DIR)
!isEmpty(KSYNTAXHIGHLIGHTING_LIB_DIR) {
# enable short information message
KSYNTAX_WARN_ON = 1
}
include(../shared/syntax/syntax_shared.pri)
isEmpty(KSYNTAXHIGHLIGHTING_LIB_DIR) {
SUBDIRS += \
3rdparty/syntax-highlighting \
3rdparty/syntax-highlighting/data
equals(KSYNTAX_WARN_ON, 1) {
message("Either KSYNTAXHIGHLIGHTING_LIB_DIR does not exist or include path could not be deduced.")
unset(KSYNTAX_WARN_ON)
}
} else {
message("Using KSyntaxHighlighting provided at $${KSYNTAXHIGHLIGHTING_LIB_DIR}.")
}
win32:SUBDIRS += utils/process_ctrlc_stub.pro
msvc: isEmpty(QTC_SKIP_CDBEXT) {
SUBDIRS += qtcreatorcdbext
}
QMAKE_EXTRA_TARGETS += deployqt # dummy

View File

@ -1,13 +0,0 @@
include(../../qtcreatorlibrary.pri)
!isEmpty(QT.svg.name): QT += svg
else: DEFINES += QT_NO_SVG
DEFINES += MODELING_LIBRARY
INCLUDEPATH += $$PWD $$PWD/qtserialization/inc
include(qstringparser/qstringparser.pri)
include(qtserialization/qtserialization.pri)
include(qmt/qmt.pri)

View File

@ -1,4 +0,0 @@
QTC_LIB_NAME = Modeling
QTC_LIB_DEPENDS += utils
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/modelinglib
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/modelinglib/qtserialization/inc

View File

@ -1,295 +0,0 @@
HEADERS += \
$$PWD/config/configcontroller.h \
$$PWD/config/sourcepos.h \
$$PWD/config/stereotypedefinitionparser.h \
$$PWD/config/stringtextsource.h \
$$PWD/config/textscanner.h \
$$PWD/config/textsource.h \
$$PWD/config/token.h \
$$PWD/controller/container.h \
$$PWD/controller/namecontroller.h \
$$PWD/controller/references.h \
$$PWD/controller/selection.h \
$$PWD/controller/undocommand.h \
$$PWD/controller/undocontroller.h \
$$PWD/diagram_controller/dclonevisitor.h \
$$PWD/diagram_controller/dcontainer.h \
$$PWD/diagram_controller/dfactory.h \
$$PWD/diagram_controller/dflatassignmentvisitor.h \
$$PWD/diagram_controller/diagramcontroller.h \
$$PWD/diagram_controller/dreferences.h \
$$PWD/diagram_controller/dselection.h \
$$PWD/diagram_controller/dupdatevisitor.h \
$$PWD/diagram_controller/dvoidvisitor.h \
$$PWD/diagram/dannotation.h \
$$PWD/diagram/dassociation.h \
$$PWD/diagram/dboundary.h \
$$PWD/diagram/dclass.h \
$$PWD/diagram/dcomponent.h \
$$PWD/diagram/dconnection.h \
$$PWD/diagram/dconstvisitor.h \
$$PWD/diagram/ddependency.h \
$$PWD/diagram/ddiagram.h \
$$PWD/diagram/delement.h \
$$PWD/diagram/dinheritance.h \
$$PWD/diagram/ditem.h \
$$PWD/diagram/dobject.h \
$$PWD/diagram/dpackage.h \
$$PWD/diagram/drelation.h \
$$PWD/diagram/dvisitor.h \
$$PWD/diagram_scene/capabilities/alignable.h \
$$PWD/diagram_scene/capabilities/editable.h \
$$PWD/diagram_scene/capabilities/intersectionable.h \
$$PWD/diagram_scene/capabilities/latchable.h \
$$PWD/diagram_scene/capabilities/moveable.h \
$$PWD/diagram_scene/capabilities/relationable.h \
$$PWD/diagram_scene/capabilities/resizable.h \
$$PWD/diagram_scene/capabilities/selectable.h \
$$PWD/diagram_scene/capabilities/windable.h \
$$PWD/diagram_scene/diagramgraphicsscene.h \
$$PWD/diagram_scene/diagramsceneconstants.h \
$$PWD/diagram_scene/diagramscenemodel.h \
$$PWD/diagram_scene/diagramscenemodelitemvisitors.h \
$$PWD/diagram_scene/items/annotationitem.h \
$$PWD/diagram_scene/items/associationitem.h \
$$PWD/diagram_scene/items/boundaryitem.h \
$$PWD/diagram_scene/items/classitem.h \
$$PWD/diagram_scene/items/componentitem.h \
$$PWD/diagram_scene/items/connectionitem.h \
$$PWD/diagram_scene/items/diagramitem.h \
$$PWD/diagram_scene/items/itemitem.h \
$$PWD/diagram_scene/items/objectitem.h \
$$PWD/diagram_scene/items/packageitem.h \
$$PWD/diagram_scene/items/relationitem.h \
$$PWD/diagram_scene/items/stereotypedisplayvisitor.h \
$$PWD/diagram_scene/latchcontroller.h \
$$PWD/diagram_scene/parts/alignbuttonsitem.h \
$$PWD/diagram_scene/parts/alignlineitem.h \
$$PWD/diagram_scene/parts/arrowitem.h \
$$PWD/diagram_scene/parts/contextlabelitem.h \
$$PWD/diagram_scene/parts/customiconitem.h \
$$PWD/diagram_scene/parts/editabletextitem.h \
$$PWD/diagram_scene/parts/pathselectionitem.h \
$$PWD/diagram_scene/parts/rectangularselectionitem.h \
$$PWD/diagram_scene/parts/relationstarter.h \
$$PWD/diagram_scene/parts/stereotypesitem.h \
$$PWD/diagram_scene/parts/templateparameterbox.h \
$$PWD/diagram_ui/diagram_mime_types.h \
$$PWD/diagram_ui/diagramsmanager.h \
$$PWD/diagram_ui/diagramsviewinterface.h \
$$PWD/diagram_ui/sceneinspector.h \
$$PWD/diagram_widgets_ui/diagramsview.h \
$$PWD/diagram_widgets_ui/diagramview.h \
$$PWD/diagram_widgets_ui/stackeddiagramsview.h \
$$PWD/document_controller/documentcontroller.h \
$$PWD/infrastructure/contextmenuaction.h \
$$PWD/infrastructure/exceptions.h \
$$PWD/infrastructure/geometryutilities.h \
$$PWD/infrastructure/handle.h \
$$PWD/infrastructure/handles.h \
$$PWD/infrastructure/ioexceptions.h \
$$PWD/infrastructure/qcompressedfile.h \
$$PWD/infrastructure/qmt_global.h \
$$PWD/infrastructure/uid.h \
$$PWD/model_controller/mchildrenvisitor.h \
$$PWD/model_controller/mclonevisitor.h \
$$PWD/model_controller/mcontainer.h \
$$PWD/model_controller/mflatassignmentvisitor.h \
$$PWD/model_controller/modelcontroller.h \
$$PWD/model_controller/mreferences.h \
$$PWD/model_controller/mselection.h \
$$PWD/model_controller/mvoidvisitor.h \
$$PWD/model/massociation.h \
$$PWD/model/mcanvasdiagram.h \
$$PWD/model/mclass.h \
$$PWD/model/mclassmember.h \
$$PWD/model/mcomponent.h \
$$PWD/model/mconnection.h \
$$PWD/model/mconstvisitor.h \
$$PWD/model/mdependency.h \
$$PWD/model/mdiagram.h \
$$PWD/model/melement.h \
$$PWD/model/minheritance.h \
$$PWD/model/mitem.h \
$$PWD/model/mobject.h \
$$PWD/model/mpackage.h \
$$PWD/model/mrelation.h \
$$PWD/model/msourceexpansion.h \
$$PWD/model/mvisitor.h \
$$PWD/model_ui/modeltreeviewinterface.h \
$$PWD/model_ui/sortedtreemodel.h \
$$PWD/model_ui/stereotypescontroller.h \
$$PWD/model_ui/treemodel.h \
$$PWD/model_ui/treemodelmanager.h \
$$PWD/model_widgets_ui/classmembersedit.h \
$$PWD/model_widgets_ui/modeltreeview.h \
$$PWD/model_widgets_ui/palettebox.h \
$$PWD/model_widgets_ui/propertiesview.h \
$$PWD/model_widgets_ui/propertiesviewmview.h \
$$PWD/project_controller/projectcontroller.h \
$$PWD/project/project.h \
$$PWD/serializer/diagramserializer.h \
$$PWD/serializer/infrastructureserializer.h \
$$PWD/serializer/modelserializer.h \
$$PWD/serializer/projectserializer.h \
$$PWD/stereotype/customrelation.h \
$$PWD/stereotype/iconshape.h \
$$PWD/stereotype/shape.h \
$$PWD/stereotype/shapepaintvisitor.h \
$$PWD/stereotype/shapes.h \
$$PWD/stereotype/shapevalue.h \
$$PWD/stereotype/shapevisitor.h \
$$PWD/stereotype/stereotypecontroller.h \
$$PWD/stereotype/stereotypeicon.h \
$$PWD/stereotype/toolbar.h \
$$PWD/style/defaultstyleengine.h \
$$PWD/style/defaultstyle.h \
$$PWD/style/objectvisuals.h \
$$PWD/style/relationstarterstyle.h \
$$PWD/style/stylecontroller.h \
$$PWD/style/styledobject.h \
$$PWD/style/styledrelation.h \
$$PWD/style/styleengine.h \
$$PWD/style/style.h \
$$PWD/tasks/alignonrastervisitor.h \
$$PWD/tasks/diagramscenecontroller.h \
$$PWD/tasks/finddiagramvisitor.h \
$$PWD/tasks/findrootdiagramvisitor.h \
$$PWD/tasks/ielementtasks.h \
$$PWD/tasks/isceneinspector.h \
$$PWD/tasks/voidelementtasks.h \
$$PWD/infrastructure/qmtassert.h \
$$PWD/diagram_scene/items/swimlaneitem.h \
$$PWD/diagram/dswimlane.h
SOURCES += \
$$PWD/config/configcontroller.cpp \
$$PWD/config/sourcepos.cpp \
$$PWD/config/stereotypedefinitionparser.cpp \
$$PWD/config/stringtextsource.cpp \
$$PWD/config/textscanner.cpp \
$$PWD/config/token.cpp \
$$PWD/controller/namecontroller.cpp \
$$PWD/controller/selection.cpp \
$$PWD/controller/undocommand.cpp \
$$PWD/controller/undocontroller.cpp \
$$PWD/diagram_controller/dclonevisitor.cpp \
$$PWD/diagram_controller/dfactory.cpp \
$$PWD/diagram_controller/dflatassignmentvisitor.cpp \
$$PWD/diagram_controller/diagramcontroller.cpp \
$$PWD/diagram_controller/dupdatevisitor.cpp \
$$PWD/diagram_controller/dvoidvisitor.cpp \
$$PWD/diagram/dannotation.cpp \
$$PWD/diagram/dassociation.cpp \
$$PWD/diagram/dboundary.cpp \
$$PWD/diagram/dclass.cpp \
$$PWD/diagram/dcomponent.cpp \
$$PWD/diagram/dconnection.cpp \
$$PWD/diagram/ddependency.cpp \
$$PWD/diagram/ddiagram.cpp \
$$PWD/diagram/delement.cpp \
$$PWD/diagram/dinheritance.cpp \
$$PWD/diagram/ditem.cpp \
$$PWD/diagram/dobject.cpp \
$$PWD/diagram/dpackage.cpp \
$$PWD/diagram/drelation.cpp \
$$PWD/diagram_scene/diagramgraphicsscene.cpp \
$$PWD/diagram_scene/diagramscenemodel.cpp \
$$PWD/diagram_scene/diagramscenemodelitemvisitors.cpp \
$$PWD/diagram_scene/items/annotationitem.cpp \
$$PWD/diagram_scene/items/associationitem.cpp \
$$PWD/diagram_scene/items/boundaryitem.cpp \
$$PWD/diagram_scene/items/classitem.cpp \
$$PWD/diagram_scene/items/componentitem.cpp \
$$PWD/diagram_scene/items/connectionitem.cpp \
$$PWD/diagram_scene/items/diagramitem.cpp \
$$PWD/diagram_scene/items/itemitem.cpp \
$$PWD/diagram_scene/items/objectitem.cpp \
$$PWD/diagram_scene/items/packageitem.cpp \
$$PWD/diagram_scene/items/relationitem.cpp \
$$PWD/diagram_scene/items/stereotypedisplayvisitor.cpp \
$$PWD/diagram_scene/latchcontroller.cpp \
$$PWD/diagram_scene/parts/alignbuttonsitem.cpp \
$$PWD/diagram_scene/parts/alignlineitem.cpp \
$$PWD/diagram_scene/parts/arrowitem.cpp \
$$PWD/diagram_scene/parts/contextlabelitem.cpp \
$$PWD/diagram_scene/parts/customiconitem.cpp \
$$PWD/diagram_scene/parts/editabletextitem.cpp \
$$PWD/diagram_scene/parts/pathselectionitem.cpp \
$$PWD/diagram_scene/parts/rectangularselectionitem.cpp \
$$PWD/diagram_scene/parts/relationstarter.cpp \
$$PWD/diagram_scene/parts/stereotypesitem.cpp \
$$PWD/diagram_scene/parts/templateparameterbox.cpp \
$$PWD/diagram_ui/diagramsmanager.cpp \
$$PWD/diagram_ui/sceneinspector.cpp \
$$PWD/diagram_widgets_ui/diagramsview.cpp \
$$PWD/diagram_widgets_ui/diagramview.cpp \
$$PWD/diagram_widgets_ui/stackeddiagramsview.cpp \
$$PWD/document_controller/documentcontroller.cpp \
$$PWD/infrastructure/contextmenuaction.cpp \
$$PWD/infrastructure/exceptions.cpp \
$$PWD/infrastructure/geometryutilities.cpp \
$$PWD/infrastructure/ioexceptions.cpp \
$$PWD/infrastructure/qcompressedfile.cpp \
$$PWD/model_controller/mchildrenvisitor.cpp \
$$PWD/model_controller/mclonevisitor.cpp \
$$PWD/model_controller/mflatassignmentvisitor.cpp \
$$PWD/model_controller/modelcontroller.cpp \
$$PWD/model_controller/mvoidvisitor.cpp \
$$PWD/model/massociation.cpp \
$$PWD/model/mcanvasdiagram.cpp \
$$PWD/model/mclass.cpp \
$$PWD/model/mclassmember.cpp \
$$PWD/model/mcomponent.cpp \
$$PWD/model/mconnection.cpp \
$$PWD/model/mdependency.cpp \
$$PWD/model/mdiagram.cpp \
$$PWD/model/melement.cpp \
$$PWD/model/minheritance.cpp \
$$PWD/model/mitem.cpp \
$$PWD/model/mobject.cpp \
$$PWD/model/mpackage.cpp \
$$PWD/model/mrelation.cpp \
$$PWD/model/msourceexpansion.cpp \
$$PWD/model_ui/sortedtreemodel.cpp \
$$PWD/model_ui/stereotypescontroller.cpp \
$$PWD/model_ui/treemodel.cpp \
$$PWD/model_ui/treemodelmanager.cpp \
$$PWD/model_widgets_ui/classmembersedit.cpp \
$$PWD/model_widgets_ui/modeltreeview.cpp \
$$PWD/model_widgets_ui/palettebox.cpp \
$$PWD/model_widgets_ui/propertiesview.cpp \
$$PWD/model_widgets_ui/propertiesviewmview.cpp \
$$PWD/project_controller/projectcontroller.cpp \
$$PWD/project/project.cpp \
$$PWD/serializer/diagramserializer.cpp \
$$PWD/serializer/infrastructureserializer.cpp \
$$PWD/serializer/modelserializer.cpp \
$$PWD/serializer/projectserializer.cpp \
$$PWD/stereotype/customrelation.cpp \
$$PWD/stereotype/iconshape.cpp \
$$PWD/stereotype/shapepaintvisitor.cpp \
$$PWD/stereotype/shapes.cpp \
$$PWD/stereotype/shapevalue.cpp \
$$PWD/stereotype/stereotypecontroller.cpp \
$$PWD/stereotype/stereotypeicon.cpp \
$$PWD/stereotype/toolbar.cpp \
$$PWD/style/defaultstyle.cpp \
$$PWD/style/defaultstyleengine.cpp \
$$PWD/style/objectvisuals.cpp \
$$PWD/style/relationstarterstyle.cpp \
$$PWD/style/stylecontroller.cpp \
$$PWD/style/style.cpp \
$$PWD/style/styledobject.cpp \
$$PWD/style/styledrelation.cpp \
$$PWD/tasks/alignonrastervisitor.cpp \
$$PWD/tasks/diagramscenecontroller.cpp \
$$PWD/tasks/finddiagramvisitor.cpp \
$$PWD/tasks/findrootdiagramvisitor.cpp \
$$PWD/tasks/voidelementtasks.cpp \
$$PWD/diagram_scene/items/swimlaneitem.cpp \
$$PWD/diagram/dswimlane.cpp
RESOURCES += \
$$PWD/resources/resources.qrc

View File

@ -1,7 +0,0 @@
HEADERS += \
$$PWD/qstringparser.h
SOURCES += \
$$PWD/qstringparser.cpp

View File

@ -1,27 +0,0 @@
HEADERS += \
$$PWD/inc/qark/access.h \
$$PWD/inc/qark/archivebasics.h \
$$PWD/inc/qark/attribute.h \
$$PWD/inc/qark/baseclass.h \
$$PWD/inc/qark/flag.h \
$$PWD/inc/qark/friend_access.h \
$$PWD/inc/qark/parameters.h \
$$PWD/inc/qark/qxmlinarchive.h \
$$PWD/inc/qark/qxmloutarchive.h \
$$PWD/inc/qark/reference.h \
$$PWD/inc/qark/serialize.h \
$$PWD/inc/qark/serialize_basic.h \
$$PWD/inc/qark/serialize_container.h \
$$PWD/inc/qark/serialize_enum.h \
$$PWD/inc/qark/serialize_pointer.h \
$$PWD/inc/qark/tag.h \
$$PWD/inc/qark/typeregistry.h \
$$PWD/inc/qark/impl/loadingrefmap.h \
$$PWD/inc/qark/impl/objectid.h \
$$PWD/inc/qark/impl/savingrefmap.h
SOURCES += \
$$PWD/src/flag.cpp \
$$PWD/src/savingrefmap.cpp

View File

@ -1,33 +0,0 @@
shared {
DEFINES += QMLDEBUG_LIBRARY
} else {
DEFINES += QMLDEBUG_STATIC_LIB
}
HEADERS += \
$$PWD/qmldebugclient.h \
$$PWD/baseenginedebugclient.h \
$$PWD/qmloutputparser.h \
$$PWD/qmldebug_global.h \
$$PWD/qpacketprotocol.h \
$$PWD/qmldebugconstants.h \
$$PWD/qdebugmessageclient.h \
$$PWD/qmlenginedebugclient.h \
$$PWD/basetoolsclient.h \
$$PWD/qmltoolsclient.h \
$$PWD/qmlenginecontrolclient.h \
$$PWD/qmldebugcommandlinearguments.h \
$$PWD/qmldebugconnection.h \
$$PWD/qmldebugconnectionmanager.h
SOURCES += \
$$PWD/qmldebugclient.cpp \
$$PWD/baseenginedebugclient.cpp \
$$PWD/qmloutputparser.cpp \
$$PWD/qpacketprotocol.cpp \
$$PWD/qdebugmessageclient.cpp \
$$PWD/basetoolsclient.cpp \
$$PWD/qmltoolsclient.cpp \
$$PWD/qmlenginecontrolclient.cpp \
$$PWD/qmldebugconnection.cpp \
$$PWD/qmldebugconnectionmanager.cpp

View File

@ -1,5 +0,0 @@
QT += network
include(../../qtcreatorlibrary.pri)
include(qmldebug-lib.pri)

View File

@ -1,2 +0,0 @@
QTC_LIB_NAME = QmlDebug
QTC_LIB_DEPENDS += utils

View File

@ -1,9 +0,0 @@
VPATH += $$PWD
SOURCES += $$PWD/easinggraph.cpp \
$$PWD/easingcontextpane.cpp
HEADERS += $$PWD/easinggraph.h \
$$PWD/easingcontextpane.h
RESOURCES += $$PWD/easingpane.qrc
FORMS += $$PWD/easingcontextpane.ui

View File

@ -1,47 +0,0 @@
shared {
DEFINES += QMLEDITORWIDGETS_LIBRARY
} else {
DEFINES += BUILD_QMLEDITORWIDGETS_STATIC_LIB
}
## Input
RESOURCES += \
resources.qrc
HEADERS += \
fontsizespinbox.h \
filewidget.h \
contextpanewidgetrectangle.h \
contextpanewidgetimage.h \
contextpanewidget.h \
contextpanetextwidget.h \
colorbutton.h \
colorbox.h \
customcolordialog.h \
gradientline.h \
huecontrol.h \
qmleditorwidgets_global.h
SOURCES += \
fontsizespinbox.cpp \
filewidget.cpp \
contextpanewidgetrectangle.cpp \
contextpanewidgetimage.cpp \
contextpanewidget.cpp \
contextpanetextwidget.cpp \
colorbox.cpp \
customcolordialog.cpp \
huecontrol.cpp \
gradientline.cpp \
colorbutton.cpp
FORMS += \
contextpanewidgetrectangle.ui \
contextpanewidgetimage.ui \
contextpanewidgetborderimage.ui \
contextpanetext.ui
include(easingpane/easingpane.pri)
DISTFILES += qmleditorwidgets.pri

View File

@ -1,5 +0,0 @@
unix:QMAKE_CXXFLAGS_DEBUG += -O3
include(../../qtcreatorlibrary.pri)
include(qmleditorwidgets-lib.pri)

View File

@ -1,4 +0,0 @@
QTC_LIB_NAME = QmlEditorWidgets
QTC_LIB_DEPENDS += \
qmljs \
utils

View File

@ -1,32 +0,0 @@
HEADERS += \
$$PWD/qmljsast_p.h \
$$PWD/qmljsastfwd_p.h \
$$PWD/qmljsastvisitor_p.h \
$$PWD/qmljsengine_p.h \
$$PWD/qmlimportresolver_p.h \
$$PWD/qmljslexer_p.h \
$$PWD/qmljsglobal_p.h \
$$PWD/qmljssourcelocation_p.h \
$$PWD/qmljsmemorypool_p.h \
$$PWD/qmldirparser_p.h \
$$PWD/qmljsgrammar_p.h \
$$PWD/qmljsparser_p.h \
$$PWD/qmljskeywords_p.h
SOURCES += \
$$PWD/qmljsast.cpp \
$$PWD/qmljsastvisitor.cpp \
$$PWD/qmlimportresolver.cpp \
$$PWD/qmljslexer.cpp \
$$PWD/qmldirparser.cpp \
$$PWD/qmljsgrammar.cpp \
$$PWD/qmljsparser.cpp \
#CONFIG += qlalr
QLALRSOURCES = $$PWD/qmljs.g
#QMAKE_QLALRFLAGS = --no-debug --qt
OTHER_FILES += $$QLALRSOURCES
# make sure we install the headers generated by qlalr
#private_headers.CONFIG += no_check_exist

View File

@ -1,87 +0,0 @@
shared {
DEFINES += QMLJS_LIBRARY
} else {
DEFINES += QML_BUILD_STATIC_LIB
}
include(parser/parser.pri)
HEADERS += \
$$PWD/qmljs_global.h \
$$PWD/qmljsbind.h \
$$PWD/qmljsbundle.h \
$$PWD/qmljsevaluate.h \
$$PWD/qmljsfindexportedcpptypes.h \
$$PWD/qmljsdocument.h \
$$PWD/qmljsscanner.h \
$$PWD/qmljsinterpreter.h \
$$PWD/qmljslink.h \
$$PWD/qmljscheck.h \
$$PWD/qmljsscopebuilder.h \
$$PWD/qmljslineinfo.h \
$$PWD/qmljscompletioncontextfinder.h \
$$PWD/qmljsmodelmanagerinterface.h \
$$PWD/qmljsicontextpane.h \
$$PWD/qmljspropertyreader.h \
$$PWD/qmljsrewriter.h \
$$PWD/qmljsicons.h \
$$PWD/qmljsplugindumper.h \
$$PWD/qmljstypedescriptionreader.h \
$$PWD/qmljsscopeastpath.h \
$$PWD/qmljsvalueowner.h \
$$PWD/qmljscontext.h \
$$PWD/qmljsscopechain.h \
$$PWD/qmljsutils.h \
$$PWD/qmljsstaticanalysismessage.h \
$$PWD/jsoncheck.h \
$$PWD/qmljssimplereader.h \
$$PWD/persistenttrie.h \
$$PWD/qmljsconstants.h \
$$PWD/qmljsimportdependencies.h \
$$PWD/qmljsviewercontext.h \
$$PWD/qmljsdialect.h
SOURCES += \
$$PWD/qmljsbind.cpp \
$$PWD/qmljsbundle.cpp \
$$PWD/qmljsevaluate.cpp \
$$PWD/qmljsfindexportedcpptypes.cpp \
$$PWD/qmljsdocument.cpp \
$$PWD/qmljsscanner.cpp \
$$PWD/qmljsinterpreter.cpp \
$$PWD/qmljslink.cpp \
$$PWD/qmljscheck.cpp \
$$PWD/qmljsscopebuilder.cpp \
$$PWD/qmljslineinfo.cpp \
$$PWD/qmljscompletioncontextfinder.cpp \
$$PWD/qmljsmodelmanagerinterface.cpp \
$$PWD/qmljspropertyreader.cpp \
$$PWD/qmljsrewriter.cpp \
$$PWD/qmljsicons.cpp \
$$PWD/qmljsplugindumper.cpp \
$$PWD/qmljstypedescriptionreader.cpp \
$$PWD/qmljsscopeastpath.cpp \
$$PWD/qmljsvalueowner.cpp \
$$PWD/qmljscontext.cpp \
$$PWD/qmljsscopechain.cpp \
$$PWD/qmljsutils.cpp \
$$PWD/qmljsstaticanalysismessage.cpp \
$$PWD/jsoncheck.cpp \
$$PWD/qmljssimplereader.cpp \
$$PWD/persistenttrie.cpp \
$$PWD/qmljsimportdependencies.cpp \
$$PWD/qmljsdialect.cpp
contains(QT, gui) {
SOURCES += \
$$PWD/qmljsindenter.cpp \
$$PWD/qmljscodeformatter.cpp \
$$PWD/qmljsreformatter.cpp
HEADERS += \
$$PWD/qmljsindenter.h \
$$PWD/qmljscodeformatter.h \
$$PWD/qmljsreformatter.h
}
QT += xml

View File

@ -1,4 +0,0 @@
DEFINES += QMLJS_LIBRARY
include(../../qtcreatorlibrary.pri)
include(qmljs-lib.pri)

View File

@ -1,6 +0,0 @@
QTC_LIB_NAME = QmlJS
QTC_LIB_DEPENDS += \
utils \
languageutils \
cplusplus \
extensionsystem

View File

@ -1,64 +0,0 @@
isEmpty(BREAKPAD_SOURCE_DIR): return()
HEADERS += $$PWD/qtbreakpad/qtsystemexceptionhandler.h
SOURCES += $$PWD/qtbreakpad/qtsystemexceptionhandler.cpp
DEFINES += ENABLE_QT_BREAKPAD
win32:BREAKPAD_SOURCE_DIR ~= s,\\,/,
INCLUDEPATH += \
$$BREAKPAD_SOURCE_DIR/src \
$$PWD/qtbreakpad
SOURCES += \
$$BREAKPAD_SOURCE_DIR/src/common/string_conversion.cc \
$$BREAKPAD_SOURCE_DIR/src/common/convert_UTF.c \
$$BREAKPAD_SOURCE_DIR/src/common/md5.cc
linux:SOURCES += \
$$BREAKPAD_SOURCE_DIR/src/client/minidump_file_writer.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/log/log.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/handler/exception_handler.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/handler/minidump_descriptor.cc \
$$BREAKPAD_SOURCE_DIR/src/common/linux/guid_creator.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/dump_writer_common/thread_info.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/dump_writer_common/ucontext_reader.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/minidump_writer/linux_dumper.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/minidump_writer/minidump_writer.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/minidump_writer/linux_ptrace_dumper.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/microdump_writer/microdump_writer.cc \
$$BREAKPAD_SOURCE_DIR/src/common/linux/file_id.cc \
$$BREAKPAD_SOURCE_DIR/src/common/linux/elfutils.cc \
$$BREAKPAD_SOURCE_DIR/src/common/linux/linux_libc_support.cc \
$$BREAKPAD_SOURCE_DIR/src/common/linux/memory_mapped_file.cc \
$$BREAKPAD_SOURCE_DIR/src/common/linux/safe_readlink.cc \
$$BREAKPAD_SOURCE_DIR/src/client/linux/crash_generation/crash_generation_client.cc
win32:SOURCES += \
$$BREAKPAD_SOURCE_DIR/src/common/windows/guid_string.cc \
$$BREAKPAD_SOURCE_DIR/src/client/windows/handler/exception_handler.cc \
$$BREAKPAD_SOURCE_DIR/src/client/windows/crash_generation/minidump_generator.cc \
$$BREAKPAD_SOURCE_DIR/src/client/windows/crash_generation/client_info.cc \
$$BREAKPAD_SOURCE_DIR/src/client/windows/crash_generation/crash_generation_client.cc
macos {
SOURCES += \
$$BREAKPAD_SOURCE_DIR/src/client/minidump_file_writer.cc \
$$BREAKPAD_SOURCE_DIR/src/client/mac/crash_generation/crash_generation_client.cc \
$$BREAKPAD_SOURCE_DIR/src/client/mac/handler/exception_handler.cc \
$$BREAKPAD_SOURCE_DIR/src/client/mac/handler/minidump_generator.cc \
$$BREAKPAD_SOURCE_DIR/src/client/mac/handler/breakpad_nlist_64.cc \
$$BREAKPAD_SOURCE_DIR/src/client/mac/handler/dynamic_images.cc \
$$BREAKPAD_SOURCE_DIR/src/client/mac/handler/protected_memory_allocator.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/bootstrap_compat.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/file_id.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/macho_id.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/macho_reader.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/macho_utilities.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/macho_walker.cc \
$$BREAKPAD_SOURCE_DIR/src/common/mac/string_utilities.cc
OBJECTIVE_SOURCES += \
$$BREAKPAD_SOURCE_DIR/src/common/mac/MachIPC.mm
LIBS += -framework Foundation
}

View File

@ -1,21 +0,0 @@
isEmpty(BREAKPAD_SOURCE_DIR): return()
QT += network
INCLUDEPATH += \
$$BREAKPAD_SOURCE_DIR/src \
$$PWD/qtcrashhandler
SOURCES += \
$$PWD/qtcrashhandler/main.cpp \
$$PWD/qtcrashhandler/mainwidget.cpp \
$$PWD/qtcrashhandler/detaildialog.cpp \
$$PWD/qtcrashhandler/dumpsender.cpp
HEADERS += \
$$PWD/qtcrashhandler/mainwidget.h \
$$PWD/qtcrashhandler/detaildialog.h \
$$PWD/qtcrashhandler/dumpsender.h
FORMS += \
$$PWD/qtcrashhandler/mainwidget.ui

View File

@ -1,6 +0,0 @@
TARGET = qtcrashhandler
QT += network
TEMPLATE = app
include(../qtcrashhandler.pri)
DESTDIR = ../bin

View File

@ -1,14 +0,0 @@
QT -= gui
include(../qtbreakpad.pri)
unix:TARGET = testapp.bin
win32:TARGET = testapp
## install_name_tool -change libQtBreakpad.1.dylib @executable_path/../lib/qtbreakpad/libQtBreakpad.dylib
DESTDIR = ../bin
CONFIG += console release c++11
SOURCES += main.cpp

View File

@ -1,122 +0,0 @@
# Build the Qt Creator CDB extension
TEMPLATE = lib
include(../../../qtcreator.pri)
isEmpty(QTC_KEEP_CDBEXT_DEFAULT_CONFIG): CONFIG += release
VERSION =
CONFIG -= precompile_header
CONFIG += hide_symbols
# Switch to statically linked CRT. Note: There will be only one
# global state of the CRT, reconsider if other DLLs are required!
# TODO: No effect, currently?
QMAKE_CXXFLAGS_RELEASE -= -MD
QMAKE_CXXFLAGS_DEBUG -= -MDd
QMAKE_CXXFLAGS_RELEASE += -MT
QMAKE_CXXFLAGS_DEBUG += -MTd
BASENAME=qtcreatorcdbext
DEF_FILE=$$PWD/qtcreatorcdbext.def
# Find out whether we are _building_ 64/32bit and determine target
# directories accordingly.
#
# Check for VSCMD_ARG_TGT_ARCH (VS 17) or Platform=X64 (VS 13, 15)
# For older versions, fall back to hacky check on LIBPATH
ENV_TARGET_ARCH=$$(VSCMD_ARG_TGT_ARCH)
isEmpty(ENV_TARGET_ARCH):ENV_TARGET_ARCH = $$(Platform)
contains(ENV_TARGET_ARCH, .*64$) {
DIRNAME=$${BASENAME}64
CDB_PLATFORM=amd64
} else {
DIRNAME=$${BASENAME}32
CDB_PLATFORM=i386
}
LIBS+=-ldbgeng -luser32
DESTDIR=$$IDE_BUILD_TREE/lib/$${DIRNAME}
TARGET = $$BASENAME
message("Compiling Qt Creator CDB extension $$TARGET $$DESTDIR for $$CDB_PLATFORM")
CONFIG -= qt
QT -= gui
QT -= core
SOURCES += qtcreatorcdbextension.cpp \
extensioncontext.cpp \
eventcallback.cpp \
symbolgroupnode.cpp \
symbolgroup.cpp \
common.cpp \
stringutils.cpp \
gdbmihelpers.cpp \
outputcallback.cpp \
symbolgroupvalue.cpp \
containers.cpp
HEADERS += extensioncontext.h \
common.h \
iinterfacepointer.h \
eventcallback.h \
symbolgroup.h \
stringutils.h \
gdbmihelpers.h \
outputcallback.h \
symbolgroupvalue.h \
containers.h \
knowntype.h \
symbolgroupnode.h
isEmpty(PYTHON_INSTALL_DIR):PYTHON_INSTALL_DIR=$$(PYTHON_INSTALL_DIR)
!isEmpty(PYTHON_INSTALL_DIR):exists($$PYTHON_INSTALL_DIR) {
DEFINES += WITH_PYTHON=1
INCLUDEPATH += $$PYTHON_INSTALL_DIR/include
DEPENDPATH += $$PYTHON_INSTALL_DIR/include
SOURCES += \
pycdbextmodule.cpp \
pyfield.cpp \
pystdoutredirect.cpp \
pytype.cpp \
pyvalue.cpp
HEADERS += \
pycdbextmodule.h \
pyfield.h \
pystdoutredirect.h \
pytype.h \
pyvalue.h
CONFIG(release, debug|release): ABS_PYTHON_DLL = $$files($${PYTHON_INSTALL_DIR}/python??.dll)
CONFIG(debug, debug|release): ABS_PYTHON_DLL = $$files($${PYTHON_INSTALL_DIR}/python??_d.dll)
PYTHON_DLL = $$basename(ABS_PYTHON_DLL)
PYTHON_BASE_NAME = $$replace(PYTHON_DLL, .dll$, )
LIBS += -L$${PYTHON_INSTALL_DIR}/libs -l$$PYTHON_BASE_NAME
inst_python.files = $$ABS_PYTHON_DLL
inst_python.files += $$files($${PYTHON_INSTALL_DIR}/python??.zip)
inst_python.path = $$QTC_PREFIX/lib/$${DIRNAME}
inst_python.CONFIG += no_check_exist no_default_install
INSTALLS += inst_python
build_pass: deploy_python.depends = install_inst_python
deploy_python.CONFIG = recursive
CONFIG(release, debug|release): deploy_python.recurse = Release
CONFIG(debug, debug|release): deploy_python.recurse = Debug
QMAKE_EXTRA_TARGETS += deploy_python
} else {
message("Set PYTHON_INSTALL_DIR pointing to Python 3.8 or greater to enable the python dumpers for cdb.")
}
target.path = $$QTC_PREFIX/lib/$${DIRNAME} # TODO this should go to INSTALL_LIBRARY_PATH/$${DIRNAME}
INSTALLS += target

View File

@ -1,59 +0,0 @@
shared {
DEFINES += BUILD_SQLITE_LIBRARY
} else {
DEFINES += BUILD_SQLITE_STATIC_LIBRARY
}
INCLUDEPATH += $$PWD
unix:!bsd: LIBS += -ldl
include(../3rdparty/sqlite/sqlite.pri)
SOURCES += \
$$PWD/sqlitedatabasebackend.cpp \
$$PWD/sqliteexception.cpp \
$$PWD/sqliteglobal.cpp \
$$PWD/sqlitelibraryinitializer.cpp \
$$PWD/sqlitesessionchangeset.cpp \
$$PWD/sqlitesessions.cpp \
$$PWD/sqlstatementbuilder.cpp \
$$PWD/sqlitedatabase.cpp \
$$PWD/sqlitebasestatement.cpp
HEADERS += \
$$PWD/constraints.h \
$$PWD/sqlitealgorithms.h \
$$PWD/sqliteblob.h \
$$PWD/sqlitelibraryinitializer.h \
$$PWD/sqlitetimestamp.h \
$$PWD/tableconstraints.h \
$$PWD/createtablesqlstatementbuilder.h \
$$PWD/lastchangedrowid.h \
$$PWD/sqlitedatabasebackend.h \
$$PWD/sqlitedatabaseinterface.h \
$$PWD/sqliteexception.h \
$$PWD/sqliteglobal.h \
$$PWD/sqlitereadstatement.h \
$$PWD/sqlitereadwritestatement.h \
$$PWD/sqlitesessionchangeset.h \
$$PWD/sqlitesessions.h \
$$PWD/sqlitetransaction.h \
$$PWD/sqlitevalue.h \
$$PWD/sqlitewritestatement.h \
$$PWD/sqlstatementbuilder.h \
$$PWD/sqlstatementbuilderexception.h \
$$PWD/sqlitedatabase.h \
$$PWD/sqlitetable.h \
$$PWD/sqlitecolumn.h \
$$PWD/sqliteindex.h \
$$PWD/sqlitebasestatement.h
DEFINES += SQLITE_CUSTOM_INCLUDE=config.h SQLITE_CORE
CONFIG(debug, debug|release): DEFINES += SQLITE_ENABLE_API_ARMOR
OTHER_FILES += README.md
contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
CONFIG += exceptions

View File

@ -1,46 +0,0 @@
INCLUDEPATH += $$PWD
VPATH += $$PWD
SOURCES += \
columndefinition.cpp \
createtablecommand.cpp \
sqlitedatabasebackend.cpp \
sqlitedatabaseconnection.cpp \
sqlitedatabaseconnectionproxy.cpp \
sqliteexception.cpp \
sqliteglobal.cpp \
sqlitestatement.cpp \
sqlitetransaction.cpp \
sqliteworkerthread.cpp \
sqlstatementbuilder.cpp \
utf8string.cpp \
utf8stringvector.cpp \
sqlitedatabase.cpp \
tablewriteworker.cpp \
tablewriteworkerproxy.cpp
HEADERS += \
columndefinition.h \
createtablesqlstatementbuilder.h \
sqlitedatabasebackend.h \
sqlitedatabaseconnection.h \
sqlitedatabaseconnectionproxy.h \
sqliteexception.h \
sqliteglobal.h \
sqlitereadstatement.h \
sqlitereadwritestatement.h \
sqlitestatement.h \
sqlitetransaction.h \
sqliteworkerthread.h \
sqlitewritestatement.h \
sqlstatementbuilder.h \
sqlstatementbuilderexception.h \
utf8string.h \
utf8stringvector.h \
sqlitedatabase.h \
sqlitetable.h \
sqlitecolumn.h \
tablewriteworker.h \
tablewriteworkerproxy.h \
createtablecommand.h

View File

@ -1,7 +0,0 @@
unix:QMAKE_CXXFLAGS_DEBUG += -O2
win32:QMAKE_CXXFLAGS_DEBUG += -O2
include(../../qtcreatorlibrary.pri)
include(sqlite-lib.pri)

View File

@ -1,2 +0,0 @@
QTC_LIB_NAME = Sqlite
INCLUDEPATH *= $$IDE_SOURCE_TREE/src/libs/sqlite

View File

@ -20,5 +20,3 @@ add_qtc_library(QtcSsh
sshremoteprocessrunner.cpp sshremoteprocessrunner.h
sshsettings.cpp sshsettings.h
)
# transitional qmake plugin build support
qtc_add_public_header(ssh_dependencies.pri)

View File

@ -1,37 +0,0 @@
QT += gui network
DEFINES += QTCSSH_LIBRARY
include(../../qtcreatorlibrary.pri)
SOURCES = \
sftpdefs.cpp \
sftpfilesystemmodel.cpp \
sftpsession.cpp \
sftptransfer.cpp \
sshconnection.cpp \
sshconnectionmanager.cpp \
sshkeycreationdialog.cpp \
sshlogging.cpp \
sshprocess.cpp \
sshremoteprocess.cpp \
sshremoteprocessrunner.cpp \
sshsettings.cpp
HEADERS = \
sftpdefs.h \
sftpfilesystemmodel.h \
sftpsession.h \
sftptransfer.h \
sshconnection.h \
sshconnectionmanager.h \
sshkeycreationdialog.h \
sshlogging_p.h \
sshprocess.h \
sshremoteprocess.h \
sshremoteprocessrunner.h \
sshsettings.h \
ssh_global.h
FORMS = $$PWD/sshkeycreationdialog.ui
RESOURCES += $$PWD/ssh.qrc

View File

@ -1,2 +0,0 @@
QTC_LIB_NAME = QtcSsh
QTC_LIB_DEPENDS += utils

View File

@ -1,64 +0,0 @@
QT += qml quick
DEFINES += TRACING_LIBRARY
include(../../qtcreatorlibrary.pri)
SOURCES += \
$$PWD/flamegraph.cpp \
$$PWD/timelinemodel.cpp \
$$PWD/timelinemodelaggregator.cpp \
$$PWD/timelinerenderer.cpp \
$$PWD/timelinezoomcontrol.cpp \
$$PWD/timelineitemsrenderpass.cpp \
$$PWD/timelineselectionrenderpass.cpp \
$$PWD/timelinenotesrenderpass.cpp \
$$PWD/timelinerenderpass.cpp \
$$PWD/timelinerenderstate.cpp \
$$PWD/timelinenotesmodel.cpp \
$$PWD/timelineabstractrenderer.cpp \
$$PWD/timelineoverviewrenderer.cpp \
$$PWD/timelinetheme.cpp \
$$PWD/timelineformattime.cpp \
$$PWD/timelinetracefile.cpp \
$$PWD/timelinetracemanager.cpp
HEADERS += \
$$PWD/flamegraph.h \
$$PWD/flamegraphattached.h \
$$PWD/safecastable.h \
$$PWD/tracing_global.h \
$$PWD/timelinemodel.h \
$$PWD/timelinemodel_p.h \
$$PWD/timelinemodelaggregator.h \
$$PWD/timelinerenderer.h \
$$PWD/timelinezoomcontrol.h \
$$PWD/timelineitemsrenderpass.h \
$$PWD/timelineselectionrenderpass.h \
$$PWD/timelinenotesrenderpass.h \
$$PWD/timelinerenderpass.h \
$$PWD/timelinerenderstate.h \
$$PWD/timelinenotesmodel.h \
$$PWD/timelinenotesmodel_p.h \
$$PWD/timelinerenderer_p.h \
$$PWD/timelinerenderstate_p.h \
$$PWD/timelineabstractrenderer.h \
$$PWD/timelineabstractrenderer_p.h \
$$PWD/timelineoverviewrenderer_p.h \
$$PWD/timelineoverviewrenderer.h \
$$PWD/timelinetheme.h \
$$PWD/timelineformattime.h \
$$PWD/timelinetracefile.h \
$$PWD/timelinetracemanager.h \
$$PWD/traceevent.h \
$$PWD/traceeventtype.h \
$$PWD/tracestashfile.h
RESOURCES += \
$$PWD/qml/tracing.qrc
DISTFILES += README
equals(TEST, 1) {
SOURCES += runscenegraphtest.cpp
HEADERS += runscenegraphtest.h
}

View File

@ -1,3 +0,0 @@
QTC_LIB_NAME = Tracing
QTC_LIB_DEPENDS = utils

View File

@ -1,23 +0,0 @@
# Qt core mimetype module
HEADERS += \
$$PWD/mimedatabase.h \
$$PWD/mimetype.h \
$$PWD/mimemagicrulematcher_p.h \
$$PWD/mimetype_p.h \
$$PWD/mimetypeparser_p.h \
$$PWD/mimedatabase_p.h \
$$PWD/mimemagicrule_p.h \
$$PWD/mimeglobpattern_p.h \
$$PWD/mimeprovider_p.h
SOURCES += \
$$PWD/mimedatabase.cpp \
$$PWD/mimetype.cpp \
$$PWD/mimemagicrulematcher.cpp \
$$PWD/mimetypeparser.cpp \
$$PWD/mimemagicrule.cpp \
$$PWD/mimeglobpattern.cpp \
$$PWD/mimeprovider.cpp
OTHER_FILES += $$[QT_HOST_DATA/src]/src/corelib/mimetypes/mime/packages/freedesktop.org.xml

View File

@ -1,21 +0,0 @@
!win32: error("process_ctrlc_stub is Windows only")
CONFIG -= qt
CONFIG += console warn_on
include(../../../qtcreator.pri)
TEMPLATE = app
TARGET = qtcreator_ctrlc_stub
DESTDIR = $$IDE_LIBEXEC_PATH
SOURCES += process_ctrlc_stub.cpp
LIBS += -luser32 -lshell32
build_all:!build_pass {
CONFIG -= build_all
CONFIG += release
}
target.path = $$INSTALL_LIBEXEC_PATH
INSTALLS += target

View File

@ -1,24 +0,0 @@
CONFIG += warn_on console use_c_linker
CONFIG -= qt app_bundle
include(../../../qtcreator.pri)
TEMPLATE = app
TARGET = qtcreator_process_stub
DESTDIR = $$IDE_LIBEXEC_PATH
build_all:!build_pass {
CONFIG -= build_all
CONFIG += release
}
unix {
SOURCES += process_stub_unix.c
solaris-.*: LIBS += -lsocket
} else {
SOURCES += process_stub_win.c
LIBS += -lshell32
}
target.path = $$INSTALL_LIBEXEC_PATH
INSTALLS += target

View File

@ -1,16 +0,0 @@
HEADERS += $$PWD/touchbar.h
macos {
HEADERS += \
$$PWD/touchbar_mac_p.h \
$$PWD/touchbar_appdelegate_mac_p.h
OBJECTIVE_SOURCES += \
$$PWD/touchbar_mac.mm \
$$PWD/touchbar_appdelegate_mac.mm
LIBS += -framework Foundation -framework AppKit
} else {
SOURCES += $$PWD/touchbar.cpp
}

View File

@ -1,342 +0,0 @@
shared {
DEFINES += UTILS_LIBRARY
} else {
DEFINES += QTCREATOR_UTILS_STATIC_LIB
}
QT += widgets gui network qml xml
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
CONFIG += exceptions # used by portlist.cpp, textfileformat.cpp, and ssh/*
win32: LIBS += -luser32 -lshell32
# PortsGatherer
win32: LIBS += -liphlpapi -lws2_32
# FileSystemModel
win32: LIBS *= -lole32
SOURCES += \
$$PWD/globalfilechangeblocker.cpp \
$$PWD/benchmarker.cpp \
$$PWD/displayname.cpp \
$$PWD/environment.cpp \
$$PWD/environmentmodel.cpp \
$$PWD/environmentdialog.cpp \
$$PWD/namevaluedictionary.cpp \
$$PWD/namevalueitem.cpp \
$$PWD/namevaluemodel.cpp \
$$PWD/namevaluesdialog.cpp \
$$PWD/commandline.cpp \
$$PWD/qrcparser.cpp \
$$PWD/qtcprocess.cpp \
$$PWD/reloadpromptutils.cpp \
$$PWD/settingsaccessor.cpp \
$$PWD/shellcommand.cpp \
$$PWD/shellcommandpage.cpp \
$$PWD/settingsselector.cpp \
$$PWD/stringutils.cpp \
$$PWD/templateengine.cpp \
$$PWD/temporarydirectory.cpp \
$$PWD/temporaryfile.cpp \
$$PWD/textfieldcheckbox.cpp \
$$PWD/textfieldcombobox.cpp \
$$PWD/filesearch.cpp \
$$PWD/pathchooser.cpp \
$$PWD/pathlisteditor.cpp \
$$PWD/wizard.cpp \
$$PWD/wizardpage.cpp \
$$PWD/filewizardpage.cpp \
$$PWD/filesystemmodel.cpp \
$$PWD/filesystemwatcher.cpp \
$$PWD/projectintropage.cpp \
$$PWD/filenamevalidatinglineedit.cpp \
$$PWD/codegeneration.cpp \
$$PWD/classnamevalidatinglineedit.cpp \
$$PWD/fancylineedit.cpp \
$$PWD/qtcolorbutton.cpp \
$$PWD/savefile.cpp \
$$PWD/filepath.cpp \
$$PWD/fileutils.cpp \
$$PWD/textfileformat.cpp \
$$PWD/consoleprocess.cpp \
$$PWD/uncommentselection.cpp \
$$PWD/parameteraction.cpp \
$$PWD/headerviewstretcher.cpp \
$$PWD/checkablemessagebox.cpp \
$$PWD/styledbar.cpp \
$$PWD/stylehelper.cpp \
$$PWD/fancymainwindow.cpp \
$$PWD/detailsbutton.cpp \
$$PWD/detailswidget.cpp \
$$PWD/changeset.cpp \
$$PWD/faketooltip.cpp \
$$PWD/htmldocextractor.cpp \
$$PWD/navigationtreeview.cpp \
$$PWD/crumblepath.cpp \
$$PWD/historycompleter.cpp \
$$PWD/buildablehelperlibrary.cpp \
$$PWD/delegates.cpp \
$$PWD/fileinprojectfinder.cpp \
$$PWD/statuslabel.cpp \
$$PWD/outputformatter.cpp \
$$PWD/flowlayout.cpp \
$$PWD/networkaccessmanager.cpp \
$$PWD/persistentsettings.cpp \
$$PWD/completingtextedit.cpp \
$$PWD/json.cpp \
$$PWD/portlist.cpp \
$$PWD/processhandle.cpp \
$$PWD/processreaper.cpp \
$$PWD/processutils.cpp \
$$PWD/appmainwindow.cpp \
$$PWD/basetreeview.cpp \
$$PWD/qtcassert.cpp \
$$PWD/elfreader.cpp \
$$PWD/proxyaction.cpp \
$$PWD/elidinglabel.cpp \
$$PWD/hostosinfo.cpp \
$$PWD/tooltip/tooltip.cpp \
$$PWD/tooltip/tips.cpp \
$$PWD/unixutils.cpp \
$$PWD/ansiescapecodehandler.cpp \
$$PWD/execmenu.cpp \
$$PWD/completinglineedit.cpp \
$$PWD/winutils.cpp \
$$PWD/itemviews.cpp \
$$PWD/treemodel.cpp \
$$PWD/treeviewcombobox.cpp \
$$PWD/proxycredentialsdialog.cpp \
$$PWD/macroexpander.cpp \
$$PWD/theme/theme.cpp \
$$PWD/progressindicator.cpp \
$$PWD/fadingindicator.cpp \
$$PWD/overridecursor.cpp \
$$PWD/categorysortfiltermodel.cpp \
$$PWD/dropsupport.cpp \
$$PWD/icon.cpp \
$$PWD/port.cpp \
$$PWD/runextensions.cpp \
$$PWD/utilsicons.cpp \
$$PWD/guard.cpp \
$$PWD/highlightingitemdelegate.cpp \
$$PWD/fuzzymatcher.cpp \
$$PWD/textutils.cpp \
$$PWD/url.cpp \
$$PWD/filecrumblabel.cpp \
$$PWD/fixedsizeclicklabel.cpp \
$$PWD/removefiledialog.cpp \
$$PWD/differ.cpp \
$$PWD/jsontreeitem.cpp \
$$PWD/namevaluevalidator.cpp \
$$PWD/camelcasecursor.cpp \
$$PWD/infolabel.cpp \
$$PWD/overlaywidget.cpp \
$$PWD/archive.cpp \
$$PWD/id.cpp \
$$PWD/infobar.cpp \
$$PWD/aspects.cpp \
$$PWD/layoutbuilder.cpp \
$$PWD/variablechooser.cpp \
$$PWD/futuresynchronizer.cpp \
$$PWD/launcherinterface.cpp \
$$PWD/launcherpackets.cpp \
$$PWD/launchersocket.cpp \
$$PWD/qtcsettings.cpp \
$$PWD/link.cpp \
$$PWD/linecolumn.cpp \
$$PWD/multitextcursor.cpp \
$$PWD/threadutils.cpp \
$$PWD/singleton.cpp
HEADERS += \
$$PWD/environmentfwd.h \
$$PWD/genericconstants.h \
$$PWD/globalfilechangeblocker.h \
$$PWD/indexedcontainerproxyconstiterator.h \
$$PWD/benchmarker.h \
$$PWD/displayname.h \
$$PWD/environment.h \
$$PWD/environmentmodel.h \
$$PWD/environmentdialog.h \
$$PWD/namevaluedictionary.h \
$$PWD/namevalueitem.h \
$$PWD/namevaluemodel.h \
$$PWD/namevaluesdialog.h \
$$PWD/commandline.h \
$$PWD/qrcparser.h \
$$PWD/qtcprocess.h \
$$PWD/span.h \
$$PWD/../3rdparty/span/span.hpp \
$$PWD/utils_global.h \
$$PWD/reloadpromptutils.h \
$$PWD/settingsaccessor.h \
$$PWD/settingsselector.h \
$$PWD/shellcommand.h \
$$PWD/shellcommandpage.h \
$$PWD/stringutils.h \
$$PWD/templateengine.h \
$$PWD/temporarydirectory.h \
$$PWD/temporaryfile.h \
$$PWD/textfieldcheckbox.h \
$$PWD/textfieldcombobox.h \
$$PWD/filesearch.h \
$$PWD/listutils.h \
$$PWD/pathchooser.h \
$$PWD/pathlisteditor.h \
$$PWD/wizard.h \
$$PWD/wizardpage.h \
$$PWD/filewizardpage.h \
$$PWD/filesystemmodel.h \
$$PWD/filesystemwatcher.h \
$$PWD/projectintropage.h \
$$PWD/filenamevalidatinglineedit.h \
$$PWD/codegeneration.h \
$$PWD/classnamevalidatinglineedit.h \
$$PWD/fancylineedit.h \
$$PWD/qtcolorbutton.h \
$$PWD/consoleprocess.h \
$$PWD/savefile.h \
$$PWD/filepath.h \
$$PWD/fileutils.h \
$$PWD/textfileformat.h \
$$PWD/uncommentselection.h \
$$PWD/parameteraction.h \
$$PWD/headerviewstretcher.h \
$$PWD/checkablemessagebox.h \
$$PWD/qtcassert.h \
$$PWD/styledbar.h \
$$PWD/stylehelper.h \
$$PWD/fancymainwindow.h \
$$PWD/detailsbutton.h \
$$PWD/detailswidget.h \
$$PWD/changeset.h \
$$PWD/faketooltip.h \
$$PWD/htmldocextractor.h \
$$PWD/navigationtreeview.h \
$$PWD/crumblepath.h \
$$PWD/historycompleter.h \
$$PWD/buildablehelperlibrary.h \
$$PWD/delegates.h \
$$PWD/fileinprojectfinder.h \
$$PWD/statuslabel.h \
$$PWD/outputformatter.h \
$$PWD/outputformat.h \
$$PWD/flowlayout.h \
$$PWD/networkaccessmanager.h \
$$PWD/persistentsettings.h \
$$PWD/completingtextedit.h \
$$PWD/json.h \
$$PWD/runextensions.h \
$$PWD/portlist.h \
$$PWD/processhandle.h \
$$PWD/processreaper.h \
$$PWD/processutils.h \
$$PWD/appmainwindow.h \
$$PWD/basetreeview.h \
$$PWD/elfreader.h \
$$PWD/proxyaction.h \
$$PWD/hostosinfo.h \
$$PWD/osspecificaspects.h \
$$PWD/elidinglabel.h \
$$PWD/tooltip/tooltip.h \
$$PWD/tooltip/tips.h \
$$PWD/tooltip/effects.h \
$$PWD/unixutils.h \
$$PWD/ansiescapecodehandler.h \
$$PWD/execmenu.h \
$$PWD/completinglineedit.h \
$$PWD/winutils.h \
$$PWD/itemviews.h \
$$PWD/treemodel.h \
$$PWD/treeviewcombobox.h \
$$PWD/scopedswap.h \
$$PWD/algorithm.h \
$$PWD/QtConcurrentTools \
$$PWD/proxycredentialsdialog.h \
$$PWD/macroexpander.h \
$$PWD/theme/theme.h \
$$PWD/theme/theme_p.h \
$$PWD/progressindicator.h \
$$PWD/fadingindicator.h \
$$PWD/executeondestruction.h \
$$PWD/overridecursor.h \
$$PWD/categorysortfiltermodel.h \
$$PWD/dropsupport.h \
$$PWD/utilsicons.h \
$$PWD/icon.h \
$$PWD/port.h \
$$PWD/functiontraits.h \
$$PWD/mapreduce.h \
$$PWD/declarationmacros.h \
$$PWD/smallstring.h \
$$PWD/smallstringiterator.h \
$$PWD/smallstringliteral.h \
$$PWD/smallstringmemory.h \
$$PWD/smallstringvector.h \
$$PWD/smallstringlayout.h \
$$PWD/sizedarray.h \
$$PWD/smallstringio.h \
$$PWD/guard.h \
$$PWD/smallstringfwd.h \
$$PWD/optional.h \
$$PWD/../3rdparty/optional/optional.hpp \
$$PWD/variant.h \
$$PWD/../3rdparty/variant/variant.hpp \
$$PWD/highlightingitemdelegate.h \
$$PWD/fuzzymatcher.h \
$$PWD/textutils.h \
$$PWD/predicates.h \
$$PWD/url.h \
$$PWD/filecrumblabel.h \
$$PWD/linecolumn.h \
$$PWD/link.h \
$$PWD/fixedsizeclicklabel.h \
$$PWD/removefiledialog.h \
$$PWD/differ.h \
$$PWD/cpplanguage_details.h \
$$PWD/jsontreeitem.h \
$$PWD/listmodel.h \
$$PWD/namevaluevalidator.h \
$$PWD/camelcasecursor.h \
$$PWD/infolabel.h \
$$PWD/overlaywidget.h \
$$PWD/archive.h \
$$PWD/id.h \
$$PWD/infobar.h \
$$PWD/porting.h \
$$PWD/aspects.h \
$$PWD/layoutbuilder.h \
$$PWD/variablechooser.h \
$$PWD/set_algorithm.h \
$$PWD/futuresynchronizer.h \
$$PWD/launcherinterface.h \
$$PWD/launcherpackets.h \
$$PWD/launchersocket.h \
$$PWD/qtcsettings.h \
$$PWD/multitextcursor.h \
$$PWD/threadutils.h \
$$PWD/singleton.h
FORMS += $$PWD/filewizardpage.ui \
$$PWD/projectintropage.ui \
$$PWD/proxycredentialsdialog.ui \
$$PWD/removefiledialog.ui
RESOURCES += $$PWD/utils.qrc
osx {
HEADERS += \
$$PWD/theme/theme_mac.h \
$$PWD/fileutils_mac.h
OBJECTIVE_SOURCES += \
$$PWD/theme/theme_mac.mm \
$$PWD/fileutils_mac.mm \
$$PWD/processhandle_mac.mm
LIBS += -framework Foundation -framework AppKit
}
include(touchbar/touchbar.pri)
include(mimetypes/mimetypes.pri)

View File

@ -1,2 +0,0 @@
include(../../qtcreatorlibrary.pri)
include(utils-lib.pri)

View File

@ -1 +0,0 @@
QTC_LIB_NAME = Utils

View File

@ -1,116 +0,0 @@
include(../../qtcreatorplugin.pri)
isEmpty(ANDROID_ENABLE):ANDROID_EXPERIMENTAL_STR="true"
else:ANDROID_EXPERIMENTAL_STR="false"
QT += xml network
HEADERS += \
androidconstants.h \
androidconfigurations.h \
androidmanager.h \
androidmanifesteditoriconcontainerwidget.h \
androidmanifesteditoriconwidget.h \
androidqmlpreviewworker.h \
androidrunconfiguration.h \
androidruncontrol.h \
androidservicewidget.h \
androidservicewidget_p.h \
androidsettingswidget.h \
androidtoolchain.h \
androiderrormessage.h \
androidglobal.h \
androidrunner.h \
androidrunnerworker.h \
androiddebugsupport.h \
androidqtversion.h \
androidcreatekeystorecertificate.h \
javaparser.h \
androidplugin.h \
androiddevice.h \
androiddeviceinfo.h \
androidqmltoolingsupport.h \
androidmanifesteditorfactory.h \
androidmanifesteditor.h \
androidmanifesteditorwidget.h \
androidmanifestdocument.h \
androiddeployqtstep.h \
certificatesmodel.h \
androidpotentialkit.h \
androidsignaloperation.h \
javaeditor.h \
javaindenter.h \
avddialog.h \
avdmanageroutputparser.h \
android_global.h \
androidbuildapkstep.h \
androidsdkmanager.h \
androidavdmanager.h \
androidsdkpackage.h \
androidsdkmodel.h \
androidsdkmanagerwidget.h \
androidpackageinstallationstep.h \
androidextralibrarylistmodel.h \
createandroidmanifestwizard.h \
androidsdkdownloader.h \
splashscreencontainerwidget.h \
splashscreenwidget.h \
javalanguageserver.h \
SOURCES += \
androidconfigurations.cpp \
androidmanager.cpp \
androidmanifesteditoriconcontainerwidget.cpp \
androidmanifesteditoriconwidget.cpp \
androidqmlpreviewworker.cpp \
androidrunconfiguration.cpp \
androidruncontrol.cpp \
androidservicewidget.cpp \
androidsettingswidget.cpp \
androidtoolchain.cpp \
androiderrormessage.cpp \
androidrunner.cpp \
androidrunnerworker.cpp \
androiddebugsupport.cpp \
androidqtversion.cpp \
androidcreatekeystorecertificate.cpp \
javaparser.cpp \
androidplugin.cpp \
androiddevice.cpp \
androiddeviceinfo.cpp \
androidqmltoolingsupport.cpp \
androidmanifesteditorfactory.cpp \
androidmanifesteditor.cpp \
androidmanifesteditorwidget.cpp \
androidmanifestdocument.cpp \
androiddeployqtstep.cpp \
certificatesmodel.cpp \
androidpotentialkit.cpp \
androidsignaloperation.cpp \
javaeditor.cpp \
javaindenter.cpp \
avddialog.cpp \
avdmanageroutputparser.cpp \
androidbuildapkstep.cpp \
androidsdkmanager.cpp \
androidavdmanager.cpp \
androidsdkpackage.cpp \
androidsdkmodel.cpp \
androidsdkmanagerwidget.cpp \
androidpackageinstallationstep.cpp \
androidextralibrarylistmodel.cpp \
createandroidmanifestwizard.cpp \
androidsdkdownloader.cpp \
splashscreencontainerwidget.cpp \
splashscreenwidget.cpp \
javalanguageserver.cpp \
FORMS += \
androidsettingswidget.ui \
addnewavddialog.ui \
androidcreatekeystorecertificate.ui \
androidsdkmanagerwidget.ui
RESOURCES = android.qrc
DEFINES += ANDROID_LIBRARY

View File

@ -1,15 +0,0 @@
QTC_PLUGIN_NAME = Android
QTC_PLUGIN_DEPENDS += \
coreplugin \
debugger \
projectexplorer \
qtsupport \
texteditor \
languageclient
QTC_LIB_DEPENDS += \
extensionsystem \
languageserverprotocol \
qmldebug \
ssh \
utils

View File

@ -1,164 +0,0 @@
TARGET = AutoTest
TEMPLATE = lib
include(../../qtcreatorplugin.pri)
DEFINES += AUTOTEST_LIBRARY
SOURCES += \
autotestplugin.cpp \
ctest/ctestconfiguration.cpp \
ctest/ctestoutputreader.cpp \
ctest/ctestsettings.cpp \
ctest/ctesttool.cpp \
ctest/ctesttreeitem.cpp \
itestframework.cpp \
itestparser.cpp \
projectsettingswidget.cpp \
testcodeparser.cpp \
testconfiguration.cpp \
testeditormark.cpp \
testframeworkmanager.cpp \
testnavigationwidget.cpp \
testoutputreader.cpp \
testprojectsettings.cpp \
testresult.cpp \
testresultdelegate.cpp \
testresultmodel.cpp \
testresultspane.cpp \
testrunner.cpp \
testsettings.cpp \
testsettingspage.cpp \
testtreeitem.cpp \
testtreeitemdelegate.cpp \
testtreemodel.cpp \
testtreeview.cpp \
catch/catchcodeparser.cpp \
catch/catchconfiguration.cpp \
catch/catchframework.cpp \
catch/catchoutputreader.cpp \
catch/catchresult.cpp \
catch/catchtestparser.cpp \
catch/catchtestsettings.cpp \
catch/catchtreeitem.cpp \
gtest/gtestconfiguration.cpp \
gtest/gtestparser.cpp \
gtest/gtesttreeitem.cpp \
gtest/gtestresult.cpp \
gtest/gtestoutputreader.cpp \
gtest/gtestvisitors.cpp \
gtest/gtestframework.cpp \
gtest/gtestsettings.cpp \
gtest/gtest_utils.cpp \
qtest/qttesttreeitem.cpp \
qtest/qttestvisitors.cpp \
qtest/qttestconfiguration.cpp \
qtest/qttestoutputreader.cpp \
qtest/qttestresult.cpp \
qtest/qttestparser.cpp \
qtest/qttestframework.cpp \
qtest/qttestsettings.cpp \
qtest/qttest_utils.cpp \
quick/quicktestconfiguration.cpp \
quick/quicktestparser.cpp \
quick/quicktesttreeitem.cpp \
quick/quicktestvisitors.cpp \
quick/quicktestframework.cpp \
quick/quicktest_utils.cpp \
boost/boostcodeparser.cpp \
boost/boosttestframework.cpp \
boost/boosttesttreeitem.cpp \
boost/boosttestparser.cpp \
boost/boosttestconfiguration.cpp \
boost/boosttestoutputreader.cpp \
boost/boosttestresult.cpp \
boost/boosttestsettings.cpp
HEADERS += \
autotest_global.h \
autotestconstants.h \
autotesticons.h \
autotestplugin.h \
ctest/ctestconfiguration.h \
ctest/ctestoutputreader.h \
ctest/ctestsettings.h \
ctest/ctesttool.h \
ctest/ctesttreeitem.h \
itemdatacache.h \
itestframework.h \
itestparser.h \
projectsettingswidget.h \
testcodeparser.h \
testconfiguration.h \
testeditormark.h \
testframeworkmanager.h \
testnavigationwidget.h \
testoutputreader.h \
testprojectsettings.h \
testresult.h \
testresultdelegate.h \
testresultmodel.h \
testresultspane.h \
testrunconfiguration.h \
testrunner.h \
testsettings.h \
testsettingspage.h \
testtreeitem.h \
testtreeitemdelegate.h \
testtreemodel.h \
testtreeview.h \
catch/catchcodeparser.h \
catch/catchconfiguration.h \
catch/catchframework.h \
catch/catchoutputreader.h \
catch/catchresult.h \
catch/catchtestparser.h \
catch/catchtestsettings.h \
catch/catchtreeitem.h \
gtest/gtestconfiguration.h \
gtest/gtestparser.h \
gtest/gtesttreeitem.h \
gtest/gtestoutputreader.h \
gtest/gtestresult.h \
gtest/gtest_utils.h \
gtest/gtestvisitors.h \
gtest/gtestframework.h \
gtest/gtestsettings.h \
gtest/gtestconstants.h \
qtest/qttesttreeitem.h \
qtest/qttest_utils.h \
qtest/qttestresult.h \
qtest/qttestvisitors.h \
qtest/qttestconfiguration.h \
qtest/qttestoutputreader.h \
qtest/qttestparser.h \
qtest/qttestframework.h \
qtest/qttestsettings.h \
qtest/qttestconstants.h \
quick/quicktestconfiguration.h \
quick/quicktestparser.h \
quick/quicktesttreeitem.h \
quick/quicktest_utils.h \
quick/quicktestvisitors.h \
quick/quicktestframework.h \
boost/boostcodeparser.h \
boost/boosttestframework.h \
boost/boosttestconstants.h \
boost/boosttesttreeitem.h \
boost/boosttestparser.h \
boost/boosttestconfiguration.h \
boost/boosttestoutputreader.h \
boost/boosttestresult.h \
boost/boosttestsettings.h
RESOURCES += \
autotest.qrc
FORMS += \
testsettingspage.ui
equals(TEST, 1) {
HEADERS += autotestunittests.h loadprojectscenario.h
SOURCES += autotestunittests.cpp loadprojectscenario.cpp
RESOURCES += autotestunittests.qrc
}

View File

@ -1,21 +0,0 @@
QTC_PLUGIN_NAME = AutoTest
QTC_PLUGIN_DEPENDS += \
coreplugin \
projectexplorer \
cppeditor \
qmljstools \
debugger \
texteditor
QTC_LIB_DEPENDS += \
cplusplus \
qmljs \
utils
QTC_TEST_DEPENDS += \
qbsprojectmanager \
qmakeprojectmanager \
qtsupport
#QTC_PLUGIN_RECOMMENDS += \

View File

@ -1,22 +0,0 @@
include(../../qtcreatorplugin.pri)
HEADERS = autotoolsbuildsystem.h \
autotoolsprojectplugin.h\
autotoolsbuildconfiguration.h\
autotoolsprojectconstants.h\
makestep.h\
autogenstep.h\
autoreconfstep.h\
configurestep.h\
makefileparserthread.h\
makefileparser.h
SOURCES = autotoolsbuildsystem.cpp \
autotoolsprojectplugin.cpp\
autotoolsbuildconfiguration.cpp\
makestep.cpp\
autogenstep.cpp\
autoreconfstep.cpp\
configurestep.cpp\
makefileparserthread.cpp\
makefileparser.cpp

View File

@ -1,9 +0,0 @@
QTC_PLUGIN_NAME = AutotoolsProjectManager
QTC_LIB_DEPENDS += \
extensionsystem \
utils
QTC_PLUGIN_DEPENDS += \
projectexplorer \
coreplugin \
cppeditor \
qtsupport

View File

@ -1,51 +0,0 @@
QT += network
include(../../qtcreatorplugin.pri)
# GDB debug servers
include(debugservers/gdb/gdbservers.pri)
# UVSC debug servers
include(debugservers/uvsc/uvscservers.pri)
# BareMetal files
SOURCES += \
baremetaldebugsupport.cpp \
baremetaldevice.cpp \
baremetaldeviceconfigurationwidget.cpp \
baremetaldeviceconfigurationwizard.cpp \
baremetaldeviceconfigurationwizardpages.cpp \
baremetalplugin.cpp \
baremetalrunconfiguration.cpp \
debugserverproviderchooser.cpp \
debugserverprovidermanager.cpp \
debugserverproviderssettingspage.cpp \
iarewparser.cpp \
iarewtoolchain.cpp \
idebugserverprovider.cpp \
keilparser.cpp \
keiltoolchain.cpp \
sdccparser.cpp \
sdcctoolchain.cpp
HEADERS += \
baremetalconstants.h \
baremetaldebugsupport.h \
baremetaldevice.h \
baremetaldeviceconfigurationwidget.h \
baremetaldeviceconfigurationwizard.h \
baremetaldeviceconfigurationwizardpages.h \
baremetalplugin.h \
baremetalrunconfiguration.h \
debugserverproviderchooser.h \
debugserverprovidermanager.h \
debugserverproviderssettingspage.h \
iarewparser.h \
iarewtoolchain.h \
idebugserverprovider.h \
keilparser.h \
keiltoolchain.h \
sdccparser.h \
sdcctoolchain.h
RESOURCES += \
baremetal.qrc

View File

@ -1,11 +0,0 @@
QTC_PLUGIN_NAME = BareMetal
QTC_LIB_DEPENDS += \
extensionsystem \
utils
QTC_PLUGIN_DEPENDS += \
coreplugin \
debugger \
projectexplorer
QTC_PLUGIN_RECOMMENDS += \
# optional plugin dependencies. nothing here at this time

View File

@ -1,15 +0,0 @@
HEADERS += \
$$PWD/eblinkgdbserverprovider.h \
$$PWD/gdbserverprovider.h \
$$PWD/genericgdbserverprovider.h \
$$PWD/jlinkgdbserverprovider.h \
$$PWD/openocdgdbserverprovider.h \
$$PWD/stlinkutilgdbserverprovider.h \
SOURCES += \
$$PWD/eblinkgdbserverprovider.cpp \
$$PWD/gdbserverprovider.cpp \
$$PWD/genericgdbserverprovider.cpp \
$$PWD/jlinkgdbserverprovider.cpp \
$$PWD/openocdgdbserverprovider.cpp \
$$PWD/stlinkutilgdbserverprovider.cpp \

View File

@ -1,36 +0,0 @@
HEADERS += \
$$PWD/simulatoruvscserverprovider.h \
$$PWD/stlinkuvscserverprovider.h \
$$PWD/jlinkuvscserverprovider.h \
$$PWD/uvproject.h \
$$PWD/uvprojectwriter.h \
$$PWD/uvscserverprovider.h \
$$PWD/uvtargetdevicemodel.h \
$$PWD/uvtargetdeviceselection.h \
$$PWD/uvtargetdeviceviewer.h \
$$PWD/uvtargetdrivermodel.h \
$$PWD/uvtargetdriverselection.h \
$$PWD/uvtargetdriverviewer.h \
$$PWD/xmlnodevisitor.h \
$$PWD/xmlproject.h \
$$PWD/xmlprojectwriter.h \
$$PWD/xmlproperty.h \
$$PWD/xmlpropertygroup.h \
SOURCES += \
$$PWD/simulatoruvscserverprovider.cpp \
$$PWD/stlinkuvscserverprovider.cpp \
$$PWD/jlinkuvscserverprovider.cpp \
$$PWD/uvproject.cpp \
$$PWD/uvprojectwriter.cpp \
$$PWD/uvscserverprovider.cpp \
$$PWD/uvtargetdevicemodel.cpp \
$$PWD/uvtargetdeviceselection.cpp \
$$PWD/uvtargetdeviceviewer.cpp \
$$PWD/uvtargetdrivermodel.cpp \
$$PWD/uvtargetdriverselection.cpp \
$$PWD/uvtargetdriverviewer.cpp \
$$PWD/xmlproject.cpp \
$$PWD/xmlprojectwriter.cpp \
$$PWD/xmlproperty.cpp \
$$PWD/xmlpropertygroup.cpp \

View File

@ -1,29 +0,0 @@
include(../../qtcreatorplugin.pri)
SOURCES += \
bazaarclient.cpp \
bazaarplugin.cpp \
bazaarsettings.cpp \
commiteditor.cpp \
bazaarcommitwidget.cpp \
bazaareditor.cpp \
annotationhighlighter.cpp \
pullorpushdialog.cpp \
branchinfo.cpp
HEADERS += \
bazaarclient.h \
constants.h \
bazaarplugin.h \
bazaarsettings.h \
commiteditor.h \
bazaarcommitwidget.h \
bazaareditor.h \
annotationhighlighter.h \
pullorpushdialog.h \
branchinfo.h
FORMS += \
revertdialog.ui \
bazaarcommitpanel.ui \
pullorpushdialog.ui \
uncommitdialog.ui

View File

@ -1,8 +0,0 @@
QTC_PLUGIN_NAME = Bazaar
QTC_LIB_DEPENDS += \
extensionsystem \
utils
QTC_PLUGIN_DEPENDS += \
texteditor \
coreplugin \
vcsbase

View File

@ -1,54 +0,0 @@
include(../../qtcreatorplugin.pri)
HEADERS += \
abstractsettings.h \
beautifierabstracttool.h \
beautifierconstants.h \
beautifierplugin.h \
configurationdialog.h \
configurationeditor.h \
configurationpanel.h \
generaloptionspage.h \
generalsettings.h \
artisticstyle/artisticstyleconstants.h \
artisticstyle/artisticstyle.h \
artisticstyle/artisticstyleoptionspage.h \
artisticstyle/artisticstylesettings.h \
clangformat/clangformatconstants.h \
clangformat/clangformat.h \
clangformat/clangformatoptionspage.h \
clangformat/clangformatsettings.h \
uncrustify/uncrustifyconstants.h \
uncrustify/uncrustify.h \
uncrustify/uncrustifyoptionspage.h \
uncrustify/uncrustifysettings.h
SOURCES += \
abstractsettings.cpp \
beautifierplugin.cpp \
configurationdialog.cpp \
configurationeditor.cpp \
configurationpanel.cpp \
generaloptionspage.cpp \
generalsettings.cpp \
artisticstyle/artisticstyle.cpp \
artisticstyle/artisticstyleoptionspage.cpp \
artisticstyle/artisticstylesettings.cpp \
clangformat/clangformat.cpp \
clangformat/clangformatoptionspage.cpp \
clangformat/clangformatsettings.cpp \
uncrustify/uncrustify.cpp \
uncrustify/uncrustifyoptionspage.cpp \
uncrustify/uncrustifysettings.cpp
FORMS += \
configurationdialog.ui \
configurationpanel.ui \
generaloptionspage.ui \
artisticstyle/artisticstyleoptionspage.ui \
clangformat/clangformatoptionspage.ui \
uncrustify/uncrustifyoptionspage.ui \
RESOURCES += \
beautifier.qrc

Some files were not shown because too many files have changed in this diff Show More