source: trunk/doc/src/snippets/qmake/configscopes.pro@ 846

Last change on this file since 846 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 312 bytes
Line 
1SOURCES = main.cpp
2#! [0]
3CONFIG += opengl
4#! [0]
5
6#! [1]
7opengl {
8 TARGET = application-gl
9} else {
10#! [1] #! [2]
11 TARGET = application
12#! [2] #! [3]
13}
14#! [3]
15
16#! [4]
17CONFIG(opengl) {
18 message(Building with OpenGL support.)
19} else {
20#! [4] #! [5]
21 message(OpenGL support is not available.)
22}
23#! [5]
Note: See TracBrowser for help on using the repository browser.