diff options
author | Javier S. Pedro <maemo@javispedro.com> | 2011-09-17 03:03:23 +0200 |
---|---|---|
committer | Javier S. Pedro <maemo@javispedro.com> | 2011-09-17 03:03:23 +0200 |
commit | 3a755f46d9cf6e3650d40a960d0d0db8c1ad9fa1 (patch) | |
tree | f330f63caec08b6626c808b5ae70c64cab0246a6 /libsowatch/libsowatch.pro | |
parent | 0dca79a8c15b76ca53617c0ed3396ab6435f0152 (diff) | |
download | sowatch-3a755f46d9cf6e3650d40a960d0d0db8c1ad9fa1.tar.gz sowatch-3a755f46d9cf6e3650d40a960d0d0db8c1ad9fa1.zip |
preparing for library package
Diffstat (limited to 'libsowatch/libsowatch.pro')
-rw-r--r-- | libsowatch/libsowatch.pro | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/libsowatch/libsowatch.pro b/libsowatch/libsowatch.pro new file mode 100644 index 0000000..703845c --- /dev/null +++ b/libsowatch/libsowatch.pro @@ -0,0 +1,100 @@ +#------------------------------------------------- +# +# Project created by QtCreator 2011-09-16T23:45:06 +# +#------------------------------------------------- + +QT += gui dbus declarative +CONFIG += mobility +MOBILITY += connectivity + +TARGET = libsowatch +TEMPLATE = lib + +DEFINES += SOWATCH_LIBRARY + +SOURCES += \ + watchsimulator.cpp \ + watchserver.cpp \ + watchpaintengine.cpp \ + watchmanager.cpp \ + watchlet.cpp \ + watch.cpp \ + testwatchlet.cpp \ + testdeclarativewatchlet.cpp \ + metawatchsimulatorform.cpp \ + metawatchsimulator.cpp \ + metawatchpaintengine.cpp \ + metawatch.cpp \ + main.cpp \ + graphicswatchlet.cpp \ + declarativewatchwrapper.cpp \ + declarativewatchlet.cpp + +HEADERS +=\ + watchsimulator.h \ + watchserver.h \ + watchpaintengine.h \ + watchmanager.h \ + watchlet.h \ + watch.h \ + testwatchlet.h \ + testdeclarativewatchlet.h \ + sowatch.h \ + metawatchsimulatorform.h \ + metawatchsimulator.h \ + metawatchpaintengine.h \ + metawatch.h \ + graphicswatchlet.h \ + declarativewatchwrapper.h \ + declarativewatchlet.h \ + sowatch_global.h + +FORMS += \ + metawatchsimulatorform.ui + +OTHER_FILES += \ + qtc_packaging/debian_harmattan/rules \ + qtc_packaging/debian_harmattan/README \ + qtc_packaging/debian_harmattan/copyright \ + qtc_packaging/debian_harmattan/control \ + qtc_packaging/debian_harmattan/compat \ + qtc_packaging/debian_harmattan/changelog + +install_headers.files =\ + watchsimulator.h \ + watchserver.h \ + watchpaintengine.h \ + watchmanager.h \ + watchlet.h \ + watch.h \ + testwatchlet.h \ + testdeclarativewatchlet.h \ + sowatch.h \ + graphicswatchlet.h \ + declarativewatchwrapper.h \ + declarativewatchlet.h \ + sowatch_global.h + + +symbian { + MMP_RULES += EXPORTUNFROZEN + TARGET.UID3 = 0xE6B95AFF + TARGET.CAPABILITY = + TARGET.EPOCALLOWDLLDATA = 1 + addFiles.sources = libsowatch.dll + addFiles.path = !:/sys/bin + DEPLOYMENT += addFiles +} + +unix:!symbian { + install_headers.path = /usr/include/sowatch + maemo5 { + target.path = /opt/maemo/usr/lib + } else { + target.path = /usr/lib + } + INSTALLS += install_headers target +} + + |