summaryrefslogtreecommitdiffstats
path: root/qmake/doc/src/snippets/qmake/configscopes.pro
diff options
context:
space:
mode:
Diffstat (limited to 'qmake/doc/src/snippets/qmake/configscopes.pro')
-rw-r--r--qmake/doc/src/snippets/qmake/configscopes.pro23
1 files changed, 0 insertions, 23 deletions
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]