aboutsummaryrefslogtreecommitdiffstats
path: root/usagestatistic.pro
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2019-10-29 10:21:57 +0100
committerKai Koehne <kai.koehne@qt.io>2019-11-01 14:52:49 +0000
commit93872ad36604e02a93ce310a7c34cfe32d7c76aa (patch)
treeb90c261961a96edaf87cced6422730656e34e350 /usagestatistic.pro
parented70a31ccc2467e66b3db99af6cbc52fd515a8be (diff)
Move sources into src subdir
This makes it easier to add a CMakeLists.txt for the super-build. Change-Id: I53566819281245c0d79d6527222d6f3a824e73dc Reviewed-by: Eike Ziller <eike.ziller@qt.io> Reviewed-by: Vitaly Fanaskov <vitaly.fanaskov@qt.io>
Diffstat (limited to 'usagestatistic.pro')
-rw-r--r--usagestatistic.pro100
1 files changed, 0 insertions, 100 deletions
diff --git a/usagestatistic.pro b/usagestatistic.pro
deleted file mode 100644
index f9fd69d..0000000
--- a/usagestatistic.pro
+++ /dev/null
@@ -1,100 +0,0 @@
-DEFINES += USAGESTATISTIC_LIBRARY
-
-INCLUDEPATH *= "$${PWD}"
-
-CONFIG += c++1z
-QMAKE_CXXFLAGS *= -Wall
-!msvc:QMAKE_CXXFLAGS *= -Wextra -pedantic
-
-DEFINES += $$shell_quote(USP_AUTH_KEY=\"$$(USP_AUTH_KEY)\")
-DEFINES += $$shell_quote(USP_SERVER_URL=\"$$(USP_SERVER_URL)\")
-
-# UsageStatistic files
-SOURCES += \
- usagestatisticplugin.cpp \
- datasources/qtclicensesource.cpp \
- datasources/buildcountsource.cpp \
- common/scopedsettingsgroupsetter.cpp \
- datasources/buildsystemsource.cpp \
- datasources/timeusagesourcebase.cpp \
- datasources/modeusagetimesource.cpp \
- datasources/examplesdatasource.cpp \
- datasources/kitsource.cpp \
- datasources/qmldesignerusagetimesource.cpp \
- ui/usagestatisticpage.cpp \
- ui/usagestatisticwidget.cpp \
- ui/outputpane.cpp \
- ui/encouragementwidget.cpp \
- services/datasubmitter.cpp
-
-HEADERS += \
- usagestatisticplugin.h \
- usagestatistic_global.h \
- usagestatisticconstants.h \
- datasources/qtclicensesource.h \
- datasources/buildcountsource.h \
- common/scopedsettingsgroupsetter.h \
- datasources/buildsystemsource.h \
- datasources/timeusagesourcebase.h \
- datasources/modeusagetimesource.h \
- datasources/examplesdatasource.h \
- datasources/kitsource.h \
- datasources/qmldesignerusagetimesource.h \
- ui/usagestatisticpage.h \
- ui/usagestatisticwidget.h \
- ui/outputpane.h \
- ui/encouragementwidget.h \
- services/datasubmitter.h \
- common/utils.h
-
-RESOURCES += \
- usagestatistic.qrc
-
-# Qt Creator linking
-
-## Either set the IDE_SOURCE_TREE when running qmake,
-## or set the QTC_SOURCE environment variable, to override the default setting
-isEmpty(IDE_SOURCE_TREE): IDE_SOURCE_TREE = $$(QTC_SOURCE)
-
-## Either set the IDE_BUILD_TREE when running qmake,
-## or set the QTC_BUILD environment variable, to override the default setting
-isEmpty(IDE_BUILD_TREE): IDE_BUILD_TREE = $$(QTC_BUILD)
-
-## uncomment to build plugin into user config directory
-## <localappdata>/plugins/<ideversion>
-## where <localappdata> is e.g.
-## "%LOCALAPPDATA%\QtProject\qtcreator" on Windows Vista and later
-## "$XDG_DATA_HOME/data/QtProject/qtcreator" or "~/.local/share/data/QtProject/qtcreator" on Linux
-## "~/Library/Application Support/QtProject/Qt Creator" on macOS
-# USE_USER_DESTDIR = yes
-
-###### If the plugin can be depended upon by other plugins, this code needs to be outsourced to
-###### <dirname>_dependencies.pri, where <dirname> is the name of the directory containing the
-###### plugin's sources.
-
-QTC_PLUGIN_NAME = UsageStatistic
-QTC_LIB_DEPENDS += \
- # nothing here at this time
-
-QTC_PLUGIN_DEPENDS += \
- coreplugin \
- debugger \
- projectexplorer \
- qtsupport
-
-QTC_PLUGIN_RECOMMENDS += \
- # optional plugin dependencies. nothing here at this time
-
-###### End _dependencies.pri contents ######
-
-# KUserFeedback
-include(3rdparty/kuserfeedback/kuserfeedback.pri)
-
-include($$IDE_SOURCE_TREE/src/qtcreatorplugin.pri)
-
-FORMS += \
- ui/usagestatisticwidget.ui \
- ui/encouragementwidget.ui
-
-QMAKE_EXTRA_TARGETS += docs install_docs # dummy targets for consistency
-