summaryrefslogtreecommitdiffstats
path: root/qmake/doc/src/snippets/qmake
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/doc/src/snippets/qmake')
-rw-r--r--qmake/doc/src/snippets/qmake/comments.pro10
-rw-r--r--qmake/doc/src/snippets/qmake/configscopes.pro23
-rw-r--r--qmake/doc/src/snippets/qmake/debug_and_release.pro14
-rw-r--r--qmake/doc/src/snippets/qmake/delegate.h40
-rw-r--r--qmake/doc/src/snippets/qmake/dereferencing.pro5
-rw-r--r--qmake/doc/src/snippets/qmake/destdir.pro2
-rw-r--r--qmake/doc/src/snippets/qmake/dirname.pro6
-rw-r--r--qmake/doc/src/snippets/qmake/environment.pro9
-rw-r--r--qmake/doc/src/snippets/qmake/functions.pro34
-rw-r--r--qmake/doc/src/snippets/qmake/include.pro3
-rw-r--r--qmake/doc/src/snippets/qmake/main.cpp40
-rw-r--r--qmake/doc/src/snippets/qmake/model.cpp40
-rw-r--r--qmake/doc/src/snippets/qmake/model.h40
-rw-r--r--qmake/doc/src/snippets/qmake/other.pro0
-rw-r--r--qmake/doc/src/snippets/qmake/paintwidget_mac.cpp40
-rw-r--r--qmake/doc/src/snippets/qmake/paintwidget_unix.cpp44
-rw-r--r--qmake/doc/src/snippets/qmake/paintwidget_win.cpp40
-rw-r--r--qmake/doc/src/snippets/qmake/precompile-stable.h52
-rw-r--r--qmake/doc/src/snippets/qmake/project_location.pro6
-rw-r--r--qmake/doc/src/snippets/qmake/qtconfiguration.pro18
-rw-r--r--qmake/doc/src/snippets/qmake/quoting.pro8
-rw-r--r--qmake/doc/src/snippets/qmake/replace.pro4
-rw-r--r--qmake/doc/src/snippets/qmake/replacefunction.pro46
-rw-r--r--qmake/doc/src/snippets/qmake/scopes.pro42
-rw-r--r--qmake/doc/src/snippets/qmake/shared_or_static.pro8
-rw-r--r--qmake/doc/src/snippets/qmake/spaces.pro9
-rw-r--r--qmake/doc/src/snippets/qmake/specifications.pro7
-rw-r--r--qmake/doc/src/snippets/qmake/testfunction.pro20
-rw-r--r--qmake/doc/src/snippets/qmake/variables.pro7
-rw-r--r--qmake/doc/src/snippets/qmake/view.h40
30 files changed, 0 insertions, 657 deletions
diff --git a/qmake/doc/src/snippets/qmake/comments.pro b/qmake/doc/src/snippets/qmake/comments.pro
deleted file mode 100644
index 957052c81d..0000000000
--- a/qmake/doc/src/snippets/qmake/comments.pro
+++ /dev/null
@@ -1,10 +0,0 @@
-#! [0]
-# Comments usually start at the beginning of a line, but they
-# can also follow other content on the same line.
-#! [0]
-
-#! [1]
-# To include a literal hash character, use the $$LITERAL_HASH variable:
-urlPieces = http://qt-project.org/doc/qt-5.0/qtgui/qtextdocument.html pageCount
-message($$join(urlPieces, $$LITERAL_HASH))
-#! [1]
diff --git a/qmake/doc/src/snippets/qmake/configscopes.pro b/qmake/doc/src/snippets/qmake/configscopes.pro
deleted file mode 100644
index 6ab7f7c428..0000000000
--- a/qmake/doc/src/snippets/qmake/configscopes.pro
+++ /dev/null
@@ -1,23 +0,0 @@
-SOURCES = main.cpp
-#! [0]
-CONFIG += opengl
-#! [0]
-
-#! [1]
-opengl {
- TARGET = application-gl
-} else {
-#! [1] #! [2]
- TARGET = application
-#! [2] #! [3]
-}
-#! [3]
-
-#! [4]
-CONFIG(opengl) {
- message(Building with OpenGL support.)
-} else {
-#! [4] #! [5]
- message(OpenGL support is not available.)
-}
-#! [5]
diff --git a/qmake/doc/src/snippets/qmake/debug_and_release.pro b/qmake/doc/src/snippets/qmake/debug_and_release.pro
deleted file mode 100644
index 92e8dbf76a..0000000000
--- a/qmake/doc/src/snippets/qmake/debug_and_release.pro
+++ /dev/null
@@ -1,14 +0,0 @@
-#! [0]
-CONFIG += debug_and_release
-
-CONFIG(debug, debug|release) {
- TARGET = debug_binary
-} else {
-#! [0] #! [1]
- TARGET = release_binary
-}
-#! [1]
-
-#! [2]
-CONFIG += build_all
-#! [2]
diff --git a/qmake/doc/src/snippets/qmake/delegate.h b/qmake/doc/src/snippets/qmake/delegate.h
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/delegate.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
diff --git a/qmake/doc/src/snippets/qmake/dereferencing.pro b/qmake/doc/src/snippets/qmake/dereferencing.pro
deleted file mode 100644
index ff0c97995c..0000000000
--- a/qmake/doc/src/snippets/qmake/dereferencing.pro
+++ /dev/null
@@ -1,5 +0,0 @@
-#! [0]
-TEMP_SOURCES = $$SOURCES
-#! [0]
-# Do something with the SOURCES variable then restore its old value.
-SOURCES = $$TEMP_SOURCES
diff --git a/qmake/doc/src/snippets/qmake/destdir.pro b/qmake/doc/src/snippets/qmake/destdir.pro
deleted file mode 100644
index b2f943904a..0000000000
--- a/qmake/doc/src/snippets/qmake/destdir.pro
+++ /dev/null
@@ -1,2 +0,0 @@
-SOURCES = main.cpp
-DESTDIR = output
diff --git a/qmake/doc/src/snippets/qmake/dirname.pro b/qmake/doc/src/snippets/qmake/dirname.pro
deleted file mode 100644
index 59e1f20b3f..0000000000
--- a/qmake/doc/src/snippets/qmake/dirname.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-#! [0]
-FILE = /etc/X11R6/XF86Config
-DIRNAME = $$dirname(FILE) #/etc/X11R6
-#! [0]
-message($$FILE)
-message($$DIRNAME)
diff --git a/qmake/doc/src/snippets/qmake/environment.pro b/qmake/doc/src/snippets/qmake/environment.pro
deleted file mode 100644
index 808bdeba47..0000000000
--- a/qmake/doc/src/snippets/qmake/environment.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-#! [0] #! [1]
-DESTDIR = $$(PWD)
-message(The project will be installed in $$DESTDIR)
-#! [0]
-
-DESTDIR = $(PWD)
-message(The project will be installed in the value of PWD)
-message(when the Makefile is processed.)
-#! [1]
diff --git a/qmake/doc/src/snippets/qmake/functions.pro b/qmake/doc/src/snippets/qmake/functions.pro
deleted file mode 100644
index 2766120719..0000000000
--- a/qmake/doc/src/snippets/qmake/functions.pro
+++ /dev/null
@@ -1,34 +0,0 @@
-#! [0]
-EXTRAS = handlers tests docs
-for(dir, EXTRAS) {
- exists($$dir) {
- SUBDIRS += $$dir
- }
-}
-#! [0]
-
-SOURCES = paintwidget_mac.cpp paintwidget_unix.cpp paintwidget_win.cpp
-macx {
- SOURCES = $$find(SOURCES, "_mac")
-}
-
-#! [1]
-HEADERS = model.h
-HEADERS += $$OTHER_HEADERS
-HEADERS = $$unique(HEADERS)
-#! [1]
-
-CONFIG += debug
-#! [2]
-options = $$find(CONFIG, "debug") $$find(CONFIG, "release")
-#! [3]
-count(options, 2) {
- message(Both release and debug specified.)
-}
-#! [2] #! [3]
-
-#! [4]
-eval(TARGET = myapp) {
- message($$TARGET)
-}
-#! [4]
diff --git a/qmake/doc/src/snippets/qmake/include.pro b/qmake/doc/src/snippets/qmake/include.pro
deleted file mode 100644
index 37e7156957..0000000000
--- a/qmake/doc/src/snippets/qmake/include.pro
+++ /dev/null
@@ -1,3 +0,0 @@
-#! [0]
-include(other.pro)
-#! [0]
diff --git a/qmake/doc/src/snippets/qmake/main.cpp b/qmake/doc/src/snippets/qmake/main.cpp
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/main.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
diff --git a/qmake/doc/src/snippets/qmake/model.cpp b/qmake/doc/src/snippets/qmake/model.cpp
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/model.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
diff --git a/qmake/doc/src/snippets/qmake/model.h b/qmake/doc/src/snippets/qmake/model.h
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/model.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
diff --git a/qmake/doc/src/snippets/qmake/other.pro b/qmake/doc/src/snippets/qmake/other.pro
deleted file mode 100644
index e69de29bb2..0000000000
--- a/qmake/doc/src/snippets/qmake/other.pro
+++ /dev/null
diff --git a/qmake/doc/src/snippets/qmake/paintwidget_mac.cpp b/qmake/doc/src/snippets/qmake/paintwidget_mac.cpp
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/paintwidget_mac.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
diff --git a/qmake/doc/src/snippets/qmake/paintwidget_unix.cpp b/qmake/doc/src/snippets/qmake/paintwidget_unix.cpp
deleted file mode 100644
index c39fc2cbf6..0000000000
--- a/qmake/doc/src/snippets/qmake/paintwidget_unix.cpp
+++ /dev/null
@@ -1,44 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-int main(int argc, char *argv[])
-{
- return 0;
-}
diff --git a/qmake/doc/src/snippets/qmake/paintwidget_win.cpp b/qmake/doc/src/snippets/qmake/paintwidget_win.cpp
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/paintwidget_win.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
diff --git a/qmake/doc/src/snippets/qmake/precompile-stable.h b/qmake/doc/src/snippets/qmake/precompile-stable.h
deleted file mode 100644
index eef8cef728..0000000000
--- a/qmake/doc/src/snippets/qmake/precompile-stable.h
+++ /dev/null
@@ -1,52 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the examples of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-//! [0]
-/* Add C includes here */
-
-#if defined __cplusplus
-/* Add C++ includes here */
-
-# include <iostream>
-# include <QApplication>
-# include <QPushButton>
-# include <QLabel>
-#endif
-//! [0]
diff --git a/qmake/doc/src/snippets/qmake/project_location.pro b/qmake/doc/src/snippets/qmake/project_location.pro
deleted file mode 100644
index 09d9b3d9d0..0000000000
--- a/qmake/doc/src/snippets/qmake/project_location.pro
+++ /dev/null
@@ -1,6 +0,0 @@
-#! [project file]
-message($$_PRO_FILE_)
-#! [project file]
-#! [project file directory]
-message($$_PRO_FILE_PWD_)
-#! [project file directory]
diff --git a/qmake/doc/src/snippets/qmake/qtconfiguration.pro b/qmake/doc/src/snippets/qmake/qtconfiguration.pro
deleted file mode 100644
index 55e13be352..0000000000
--- a/qmake/doc/src/snippets/qmake/qtconfiguration.pro
+++ /dev/null
@@ -1,18 +0,0 @@
-# Show information about the Qt installation.
-#! [0]
-message(Qt version: $$[QT_VERSION])
-message(Qt is installed in $$[QT_INSTALL_PREFIX])
-message(Qt resources can be found in the following locations:)
-message(Documentation: $$[QT_INSTALL_DOCS])
-message(Header files: $$[QT_INSTALL_HEADERS])
-message(Libraries: $$[QT_INSTALL_LIBS])
-message(Binary files (executables): $$[QT_INSTALL_BINS])
-message(Plugins: $$[QT_INSTALL_PLUGINS])
-message(Data files: $$[QT_INSTALL_DATA])
-message(Translation files: $$[QT_INSTALL_TRANSLATIONS])
-message(Settings: $$[QT_INSTALL_SETTINGS])
-message(Examples: $$[QT_INSTALL_EXAMPLES])
-#! [0]
-
-# Show configuration information.
-message(CONFIG = $$CONFIG)
diff --git a/qmake/doc/src/snippets/qmake/quoting.pro b/qmake/doc/src/snippets/qmake/quoting.pro
deleted file mode 100644
index 62efb2042e..0000000000
--- a/qmake/doc/src/snippets/qmake/quoting.pro
+++ /dev/null
@@ -1,8 +0,0 @@
-#! [0]
-DEST = "Program Files"
-#! [0]
-count(DEST, 1) {
- message(Only one item found in DEST.)
-} else {
- message(More than one item found in DEST.)
-}
diff --git a/qmake/doc/src/snippets/qmake/replace.pro b/qmake/doc/src/snippets/qmake/replace.pro
deleted file mode 100644
index 504e01a018..0000000000
--- a/qmake/doc/src/snippets/qmake/replace.pro
+++ /dev/null
@@ -1,4 +0,0 @@
-#! [0]
-MESSAGE = This is a tent.
-message($$replace(MESSAGE, tent, test))
-#! [0]
diff --git a/qmake/doc/src/snippets/qmake/replacefunction.pro b/qmake/doc/src/snippets/qmake/replacefunction.pro
deleted file mode 100644
index 98013ba42d..0000000000
--- a/qmake/doc/src/snippets/qmake/replacefunction.pro
+++ /dev/null
@@ -1,46 +0,0 @@
-#! [0]
-defineReplace(headersAndSources) {
- variable = $$1
- names = $$eval($$variable)
- headers =
- sources =
-
- for(name, names) {
- header = $${name}.h
- exists($$header) {
- headers += $$header
- }
- source = $${name}.cpp
- exists($$source) {
- sources += $$source
- }
- }
- return($$headers $$sources)
-}
-#! [0]
-
-defineReplace(matchingFiles) {
- names = $$ARGS
- files =
-
- for(name, names) {
- header = $${name}.h
- source = $${name}.cpp
- exists($$header):exists($$source) {
- files += $$header
- files += $$source
- }
- }
- return($$files)
-}
-
-names = delegate model view main
-message(Finding all headers and sources from the following list of names:)
-message($$names)
-allFiles = $$headersAndSources(names)
-message(Found: $$allFiles)
-
-message(Finding only matching headers and sources from the following list of names:)
-message($$names)
-matching = $$matchingFiles($$names)
-message(Found: $$matching)
diff --git a/qmake/doc/src/snippets/qmake/scopes.pro b/qmake/doc/src/snippets/qmake/scopes.pro
deleted file mode 100644
index 63b9b3aa55..0000000000
--- a/qmake/doc/src/snippets/qmake/scopes.pro
+++ /dev/null
@@ -1,42 +0,0 @@
-#! [syntax]
-<condition> {
- <command or definition>
- ...
-}
-#! [syntax]
-
-#! [0]
-win32 {
- SOURCES += paintwidget_win.cpp
-}
-#! [0]
-
-#! [1]
-!win32 {
- SOURCES -= paintwidget_win.cpp
-}
-#! [1]
-
-unix {
- SOURCES += paintwidget_unix.cpp
-}
-
-#! [2]
-macx {
- CONFIG(debug, debug|release) {
- HEADERS += debugging.h
- }
-}
-#! [2]
-
-#! [3]
-macx:CONFIG(debug, debug|release) {
- HEADERS += debugging.h
-}
-#! [3]
-
-#! [4]
-win32|macx {
- HEADERS += debugging.h
-}
-#! [4]
diff --git a/qmake/doc/src/snippets/qmake/shared_or_static.pro b/qmake/doc/src/snippets/qmake/shared_or_static.pro
deleted file mode 100644
index 31c25ea44b..0000000000
--- a/qmake/doc/src/snippets/qmake/shared_or_static.pro
+++ /dev/null
@@ -1,8 +0,0 @@
-TEMPLIBS = $$[QT_INSTALL_LIBS] libQtGui.prl
-include($$join(TEMPLIBS, "/"))
-
-contains(QMAKE_PRL_CONFIG, shared) {
- message(Shared Qt)
-} else {
- message(Static Qt)
-}
diff --git a/qmake/doc/src/snippets/qmake/spaces.pro b/qmake/doc/src/snippets/qmake/spaces.pro
deleted file mode 100644
index 614d4c553d..0000000000
--- a/qmake/doc/src/snippets/qmake/spaces.pro
+++ /dev/null
@@ -1,9 +0,0 @@
-#! [quoting library paths with spaces]
-win32:LIBS += "C:/mylibs/extra libs/extra.lib"
-unix:LIBS += "-L/home/user/extra libs" -lextra
-#! [quoting library paths with spaces]
-
-#! [quoting include paths with spaces]
-win32:INCLUDEPATH += "C:/mylibs/extra headers"
-unix:INCLUDEPATH += "/home/user/extra headers"
-#! [quoting include paths with spaces]
diff --git a/qmake/doc/src/snippets/qmake/specifications.pro b/qmake/doc/src/snippets/qmake/specifications.pro
deleted file mode 100644
index f9a0d0a1cb..0000000000
--- a/qmake/doc/src/snippets/qmake/specifications.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-#! [0]
-message($$QMAKESPEC)
-
-linux-g++ {
- message(Linux)
-}
-#! [0]
diff --git a/qmake/doc/src/snippets/qmake/testfunction.pro b/qmake/doc/src/snippets/qmake/testfunction.pro
deleted file mode 100644
index 785ffed6be..0000000000
--- a/qmake/doc/src/snippets/qmake/testfunction.pro
+++ /dev/null
@@ -1,20 +0,0 @@
-#! [0]
-defineTest(allFiles) {
- files = $$ARGS
-
- for(file, files) {
- !exists($$file) {
- return(false)
- }
- }
- return(true)
-}
-#! [0]
-
-files = delegate.h model.h view.h
-
-allFiles($$files) {
- message(All files are present: $$files)
-} else {
- message(Not all files are present: $$files)
-}
diff --git a/qmake/doc/src/snippets/qmake/variables.pro b/qmake/doc/src/snippets/qmake/variables.pro
deleted file mode 100644
index c1439ba68b..0000000000
--- a/qmake/doc/src/snippets/qmake/variables.pro
+++ /dev/null
@@ -1,7 +0,0 @@
-#! [0]
-HEADERS = mainwindow.h paintwidget.h
-#! [0] #! [1]
-SOURCES = main.cpp mainwindow.cpp \
- paintwidget.cpp
-CONFIG += console
-#! [1]
diff --git a/qmake/doc/src/snippets/qmake/view.h b/qmake/doc/src/snippets/qmake/view.h
deleted file mode 100644
index 92c7eb6a48..0000000000
--- a/qmake/doc/src/snippets/qmake/view.h
+++ /dev/null
@@ -1,40 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the documentation of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:BSD$
-** You may use this file under the terms of the BSD license as follows:
-**
-** "Redistribution and use in source and binary forms, with or without
-** modification, are permitted provided that the following conditions are
-** met:
-** * Redistributions of source code must retain the above copyright
-** notice, this list of conditions and the following disclaimer.
-** * Redistributions in binary form must reproduce the above copyright
-** notice, this list of conditions and the following disclaimer in
-** the documentation and/or other materials provided with the
-** distribution.
-** * Neither the name of Digia Plc and its Subsidiary(-ies) nor the names
-** of its contributors may be used to endorse or promote products derived
-** from this software without specific prior written permission.
-**
-**
-** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-