summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/opiecore.pro
authormickeyl <mickeyl>2005-05-19 11:59:32 (UTC)
committer mickeyl <mickeyl>2005-05-19 11:59:32 (UTC)
commited7ba8b228d3d0ffae9c9b68900b7f723d7ade4a (patch) (unidiff)
tree83b59755f58747cdb7e543a4c237e9e217b03fbd /libopie2/opiecore/opiecore.pro
parentcb243f00d12c5fc40de02e7f9f20009b52303a66 (diff)
downloadopie-ed7ba8b228d3d0ffae9c9b68900b7f723d7ade4a.zip
opie-ed7ba8b228d3d0ffae9c9b68900b7f723d7ade4a.tar.gz
opie-ed7ba8b228d3d0ffae9c9b68900b7f723d7ade4a.tar.bz2
- add linux pcmcia subsystem wrapper: OPcmciaSystem and OPcmciaCard
- move linux-only subsystems in subdirectory linux - minor header cleanups
Diffstat (limited to 'libopie2/opiecore/opiecore.pro') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/opiecore.pro16
1 files changed, 5 insertions, 11 deletions
diff --git a/libopie2/opiecore/opiecore.pro b/libopie2/opiecore/opiecore.pro
index 84f3343..cbb7e04 100644
--- a/libopie2/opiecore/opiecore.pro
+++ b/libopie2/opiecore/opiecore.pro
@@ -3,13 +3,12 @@ CONFIG += qt warn_on
3DESTDIR = $(OPIEDIR)/lib 3DESTDIR = $(OPIEDIR)/lib
4HEADERS = oapplication.h \ 4HEADERS = oapplication.h \
5 oconfig.h \ 5 oconfig.h \
6 odebug.h \ 6 odebug.h \
7 oglobal.h \ 7 oglobal.h \
8 oglobalsettings.h \ 8 oglobalsettings.h \
9 oinputsystem.h \
10 okeyconfigmanager.h \ 9 okeyconfigmanager.h \
11 okeyfilter.h \ 10 okeyfilter.h \
12 opluginloader.h \ 11 opluginloader.h \
13 oprocess.h \ 12 oprocess.h \
14 oprocctrl.h \ 13 oprocctrl.h \
15 oresource.h \ 14 oresource.h \
@@ -20,40 +19,35 @@ HEADERS = oapplication.h \
20 19
21SOURCES = oapplication.cpp \ 20SOURCES = oapplication.cpp \
22 oconfig.cpp \ 21 oconfig.cpp \
23 odebug.cpp \ 22 odebug.cpp \
24 oglobal.cpp \ 23 oglobal.cpp \
25 oglobalsettings.cpp \ 24 oglobalsettings.cpp \
26 oinputsystem.cpp \
27 okeyconfigmanager.cpp \ 25 okeyconfigmanager.cpp \
28 okeyfilter.cpp \ 26 okeyfilter.cpp \
29 opluginloader.cpp \ 27 opluginloader.cpp \
30 oprocess.cpp \ 28 oprocess.cpp \
31 oprocctrl.cpp \ 29 oprocctrl.cpp \
32 oresource.cpp \ 30 oresource.cpp \
33 osmartpointer.cpp \ 31 osmartpointer.cpp \
34 ostorageinfo.cpp \ 32 ostorageinfo.cpp \
35 xmltree.cpp 33 xmltree.cpp
36 34
37 35
38# The following files are currently not compileable on mac ! 36# Disable Linux-only subsystems for MAC build
39# Therfore I removed them from the build .. (eilers) 37!contains( CONFIG_TARGET_MACOSX, y ) {
40 38include ( linux/linux.pro )
41CONFTEST = $$system( echo $CONFIG_TARGET_MACOSX )
42!contains( CONFTEST, y ) {
43HEADERS += ofilenotify.h
44SOURCES += ofilenotify.cpp
45} else { 39} else {
46 message( "ofilenotify is not available in a mac build !" ) 40 message( "disabling linux-only subsystems for MAC build" )
47} 41}
48 42
49include( device/device.pro ) 43include( device/device.pro )
50 44
51INTERFACES = 45INTERFACES =
52TARGET = opiecore2 46TARGET = opiecore2
53VERSION = 1.9.3 47VERSION = 1.9.4
54INCLUDEPATH += $(OPIEDIR)/include 48INCLUDEPATH += $(OPIEDIR)/include
55DEPENDPATH += $(OPIEDIR)/include 49DEPENDPATH += $(OPIEDIR)/include
56 50
57!contains( platform, x11 ) { 51!contains( platform, x11 ) {
58 LIBS = -lqpe 52 LIBS = -lqpe
59 include( $(OPIEDIR)/include.pro ) 53 include( $(OPIEDIR)/include.pro )