author | mickeyl <mickeyl> | 2005-07-10 18:23:38 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2005-07-10 18:23:38 (UTC) |
commit | 71fc7a0b9722b1a9695049f2885d5247449fbd6c (patch) (side-by-side diff) | |
tree | 4006dff6f7333e72156426b7740a5ea725accc3a /libopie2/opiebluez/opiebluez.pro | |
parent | 779359497a582d510da0448f41a14e44db6b52af (diff) | |
download | opie-71fc7a0b9722b1a9695049f2885d5247449fbd6c.zip opie-71fc7a0b9722b1a9695049f2885d5247449fbd6c.tar.gz opie-71fc7a0b9722b1a9695049f2885d5247449fbd6c.tar.bz2 |
s/opieshower/opiebluez/, infrared better goes through opienet
there's the need of a connection abstraction library which bases on opienet
and opiebluez in the future. It's for discussion if it makes sense in Opie 1.x
Diffstat (limited to 'libopie2/opiebluez/opiebluez.pro') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie2/opiebluez/opiebluez.pro | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libopie2/opiebluez/opiebluez.pro b/libopie2/opiebluez/opiebluez.pro new file mode 100644 index 0000000..bcd2df2 --- a/dev/null +++ b/libopie2/opiebluez/opiebluez.pro @@ -0,0 +1,29 @@ +TEMPLATE = lib +CONFIG += qt warn_on +DESTDIR = $(OPIEDIR)/lib +HEADERS = obluetooth.h \ + oinfrared.h +SOURCES = obluetooth.cpp \ + oinfrared.cpp +INTERFACES = +TARGET = opieshower2 +VERSION = 0.0.0 +INCLUDEPATH += $(OPIEDIR)/include +DEPENDPATH += $(OPIEDIR)/include +LIBS += -lopiecore2 -lbluetooth + +!contains( platform, x11 ) { + include( $(OPIEDIR)/include.pro ) +} + +contains( platform, x11 ) { + LIBS += -L$(OPIEDIR)/lib -Wl,-rpath,$(OPIEDIR)/lib +} + +!isEmpty( LIBBLUEZ_INC_DIR ) { + INCLUDEPATH = $$LIBBLUEZ_INC_DIR $$INCLUDEPATH +} +!isEmpty( LIBBLUEZ_LIB_DIR ) { + LIBS = -L$$LIBBLUEZ_LIB_DIR $$LIBS +} + |