summaryrefslogtreecommitdiff
path: root/src/libs/qt-breakpad
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-01-14 12:44:53 +0100
committerEike Ziller <eike.ziller@qt.io>2022-01-20 12:18:15 +0000
commit9d8a419d107ae8219c84bc9178bfed76b94fa930 (patch)
tree110e9f16dd2e3d9c03b2dc38d2b261663606fb4f /src/libs/qt-breakpad
parent3c3580c7701ccf43ca014e19aa5fa210e90b4ed3 (diff)
downloadqt-creator-9d8a419d107ae8219c84bc9178bfed76b94fa930.tar.gz
Remove qmake build files
Removes qmake as a build system for building Qt Creator itself. Keep them for some tests that are not completely moved to CMake yet. Change-Id: I846c6ef65626b6dfae6375fdc85d00677aa8c2fb Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/libs/qt-breakpad')
-rw-r--r--src/libs/qt-breakpad/qtbreakpad.pri64
-rw-r--r--src/libs/qt-breakpad/qtcrashhandler.pri21
-rw-r--r--src/libs/qt-breakpad/qtcrashhandler/qtcrashhandler.pro6
-rw-r--r--src/libs/qt-breakpad/testapp/testapp.pro14
4 files changed, 0 insertions, 105 deletions
diff --git a/src/libs/qt-breakpad/qtbreakpad.pri b/src/libs/qt-breakpad/qtbreakpad.pri
deleted file mode 100644
index 4eada575c1..0000000000
--- a/src/libs/qt-breakpad/qtbreakpad.pri
+++ /dev/null
@@ -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
-}
diff --git a/src/libs/qt-breakpad/qtcrashhandler.pri b/src/libs/qt-breakpad/qtcrashhandler.pri
deleted file mode 100644
index c452c09bd8..0000000000
--- a/src/libs/qt-breakpad/qtcrashhandler.pri
+++ /dev/null
@@ -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
diff --git a/src/libs/qt-breakpad/qtcrashhandler/qtcrashhandler.pro b/src/libs/qt-breakpad/qtcrashhandler/qtcrashhandler.pro
deleted file mode 100644
index f4bca4e322..0000000000
--- a/src/libs/qt-breakpad/qtcrashhandler/qtcrashhandler.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-TARGET = qtcrashhandler
-QT += network
-TEMPLATE = app
-
-include(../qtcrashhandler.pri)
-DESTDIR = ../bin
diff --git a/src/libs/qt-breakpad/testapp/testapp.pro b/src/libs/qt-breakpad/testapp/testapp.pro
deleted file mode 100644
index 407ad1e2ea..0000000000
--- a/src/libs/qt-breakpad/testapp/testapp.pro
+++ /dev/null
@@ -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