aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/clangformat/clangformat.pro
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-01-14 12:44:53 +0100
committerEike Ziller <eike.ziller@qt.io>2022-01-20 12:18:15 +0000
commit9d8a419d107ae8219c84bc9178bfed76b94fa930 (patch)
tree110e9f16dd2e3d9c03b2dc38d2b261663606fb4f /src/plugins/clangformat/clangformat.pro
parent3c3580c7701ccf43ca014e19aa5fa210e90b4ed3 (diff)
Remove qmake build files
Removes qmake as a build system for building Qt Creator itself. Keep them for some tests that are not completely moved to CMake yet. Change-Id: I846c6ef65626b6dfae6375fdc85d00677aa8c2fb Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Christian Kandeler <christian.kandeler@qt.io> Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Diffstat (limited to 'src/plugins/clangformat/clangformat.pro')
-rw-r--r--src/plugins/clangformat/clangformat.pro40
1 files changed, 0 insertions, 40 deletions
diff --git a/src/plugins/clangformat/clangformat.pro b/src/plugins/clangformat/clangformat.pro
deleted file mode 100644
index 6ff219e6b1..0000000000
--- a/src/plugins/clangformat/clangformat.pro
+++ /dev/null
@@ -1,40 +0,0 @@
-include(../../qtcreatorplugin.pri)
-include(clangformat-source.pri)
-include(../../shared/clang/clang_installation.pri)
-
-include(../../shared/clang/clang_defines.pri)
-
-requires(!isEmpty(CLANGFORMAT_LIBS))
-
-LIBS += $$CLANGFORMAT_LIBS
-INCLUDEPATH += $$LLVM_INCLUDEPATH
-
-QMAKE_CXXFLAGS_WARN_ON *= $$LLVM_CXXFLAGS_WARNINGS
-QMAKE_CXXFLAGS *= $$LLVM_CXXFLAGS
-unix:!macos:QMAKE_LFLAGS += -Wl,--exclude-libs,ALL
-
-SOURCES += \
- clangformatconfigwidget.cpp \
- clangformatfile.cpp \
- clangformatindenter.cpp \
- clangformatplugin.cpp \
- clangformatsettings.cpp \
- clangformatutils.cpp
-
-HEADERS += \
- clangformatconfigwidget.h \
- clangformatfile.h \
- clangformatindenter.h \
- clangformatplugin.h \
- clangformatsettings.h \
- clangformatutils.h
-
-FORMS += \
- clangformatchecks.ui \
- clangformatconfigwidget.ui
-
-equals(TEST, 1) {
- DEFINES += TESTDATA_DIR=\"R\\\"xxx($$PWD/tests/data)xxx\\\"\"
- HEADERS += tests/clangformat-test.h
- SOURCES += tests/clangformat-test.cpp
-}