summaryrefslogtreecommitdiff
path: root/examples/simple/example.pro
authormickeyl <mickeyl>2005-01-29 14:57:47 (UTC)
committer mickeyl <mickeyl>2005-01-29 14:57:47 (UTC)
commit24cdbd7419267a124a6a0991819ba6a2c4d211a5 (patch) (side-by-side diff)
tree5eac29d7603455ecb733674c96f231e4241c7be0 /examples/simple/example.pro
parentc967c1b8ad8135d9a56e936a43469cc0faea7888 (diff)
downloadopie-24cdbd7419267a124a6a0991819ba6a2c4d211a5.zip
opie-24cdbd7419267a124a6a0991819ba6a2c4d211a5.tar.gz
opie-24cdbd7419267a124a6a0991819ba6a2c4d211a5.tar.bz2
use proper names for .pro files
please remember to name the .pro file exactly like the name of the directory
Diffstat (limited to 'examples/simple/example.pro') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/simple/example.pro38
1 files changed, 0 insertions, 38 deletions
diff --git a/examples/simple/example.pro b/examples/simple/example.pro
deleted file mode 100644
index 8f006f6..0000000
--- a/examples/simple/example.pro
+++ b/dev/null
@@ -1,38 +0,0 @@
-# '#' introduces a comment
-#CONFIG says the qmake buildsystem what to use
-#
-CONFIG += qt warn_on quick-app
-# qt = Use qt
-# warn_on = warnings are on
-# quick-app = Tell the buildsystem that the apps is quick-launchable
-#
-
-# Note if you do not supply quick-app you need to set
-# TEMPLATE = app or TEMPLATE = lib depending on if you want to build an executable or lib
-# and DESTDIR= $(OPIEDIR)/bin or $(OPIEDIR)/lib
-
-TARGET = simple
-# the name of the resulting object
-
-HEADERS = simple.h
-# A list header files
-
-
-SOURCES = simple.cpp
-# A list of source files
-
-INTERFACES =
-# list of ui files
-
-INCLUDEPATH += $(OPIEDIR)/include
-DEPENDPATH += $(OPIEDIR)/include
-
-
-
-LIBS += -lqpe
-# libs to link against
-
-#Important include the global include.pro just like below
-
-
-include( $(OPIEDIR)/include.pro )