diff options
Diffstat (limited to 'examples/activeqt/opengl/opengl.pro')
-rw-r--r-- | examples/activeqt/opengl/opengl.pro | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/examples/activeqt/opengl/opengl.pro b/examples/activeqt/opengl/opengl.pro new file mode 100644 index 0000000..4979dc0 --- /dev/null +++ b/examples/activeqt/opengl/opengl.pro @@ -0,0 +1,21 @@ +TEMPLATE = app +TARGET = openglax + +CONFIG += qt warn_off qaxserver + +QT += opengl + +HEADERS = glbox.h \ + globjwin.h +SOURCES = glbox.cpp \ + globjwin.cpp \ + main.cpp +RC_FILE = $$QT_SOURCE_TREE/src/activeqt/control/qaxserver.rc + +# install +target.path = $$[QT_INSTALL_EXAMPLES]/activeqt/opengl +sources.files = $$SOURCES $$HEADERS $$RESOURCES $$FORMS opengl.pro +sources.path = $$[QT_INSTALL_EXAMPLES]/activeqt/opengl +INSTALLS += target sources + +include($$QT_SOURCE_TREE/examples/examplebase.pri) |