author | mickeyl <mickeyl> | 2005-01-29 14:57:47 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-01-29 14:57:47 (UTC) |
commit | 24cdbd7419267a124a6a0991819ba6a2c4d211a5 (patch) (side-by-side diff) | |
tree | 5eac29d7603455ecb733674c96f231e4241c7be0 /examples/todayplugin/todayplugin.pro | |
parent | c967c1b8ad8135d9a56e936a43469cc0faea7888 (diff) | |
download | opie-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/todayplugin/todayplugin.pro') (more/less context) (ignore whitespace changes)
-rw-r--r-- | examples/todayplugin/todayplugin.pro | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/todayplugin/todayplugin.pro b/examples/todayplugin/todayplugin.pro new file mode 100644 index 0000000..0cd1103 --- a/dev/null +++ b/examples/todayplugin/todayplugin.pro @@ -0,0 +1,17 @@ +TEMPLATE = lib +CONFIG -= moc +CONFIG += qt + +# Input +HEADERS = exampleplugin.h examplepluginimpl.h examplepluginwidget.h +SOURCES = exampleplugin.cpp examplepluginimpl.cpp examplepluginwidget.cpp + +INCLUDEPATH += $(OPIEDIR)/include +DEPENDPATH += $(OPIEDIR)/include + +LIBS+= -lqpe -lopieui2 + +DESTDIR = $(OPIEDIR)/plugins/today +TARGET = todayexampleplugin + +include( $(OPIEDIR)/include.pro ) |