From 0f80e795e20873ab90e27bbbbf4228d0a21ad0a9 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 1 Feb 2016 11:18:44 +0100 Subject: Rename top-level project file to match repository name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The consistency between project file name and repository name avoids the need to code the name of the .pro file in .gitmodules. Change-Id: I458a0f5ad8bb5084fdb0c5b54bdc0bc29385392e Reviewed-by: Jędrzej Nowacki --- qtdatavis3d.pro | 13 +++++++++++++ qtdatavisualization.pro | 13 ------------- 2 files changed, 13 insertions(+), 13 deletions(-) create mode 100644 qtdatavis3d.pro delete mode 100644 qtdatavisualization.pro diff --git a/qtdatavis3d.pro b/qtdatavis3d.pro new file mode 100644 index 00000000..ab70c061 --- /dev/null +++ b/qtdatavis3d.pro @@ -0,0 +1,13 @@ +requires(qtHaveModule(widgets)) + +load(qt_parts) + +# We need opengl, minimum es2 or desktop +!contains(QT_CONFIG, opengl) { + error(QtDataVisualization requires OpenGL!) +} +contains(QT_CONFIG, opengles1) { + error(QtDataVisualization does not support OpenGL ES 1!) +} + +OTHER_FILES += README dist/* .qmake.conf diff --git a/qtdatavisualization.pro b/qtdatavisualization.pro deleted file mode 100644 index ab70c061..00000000 --- a/qtdatavisualization.pro +++ /dev/null @@ -1,13 +0,0 @@ -requires(qtHaveModule(widgets)) - -load(qt_parts) - -# We need opengl, minimum es2 or desktop -!contains(QT_CONFIG, opengl) { - error(QtDataVisualization requires OpenGL!) -} -contains(QT_CONFIG, opengles1) { - error(QtDataVisualization does not support OpenGL ES 1!) -} - -OTHER_FILES += README dist/* .qmake.conf -- cgit v1.2.3