Commit 1517e8e5 authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #317 from gefink/master

Include Path fixes
parents e991326e 282af44c
......@@ -179,7 +179,8 @@ linux-g++|linux-g++-64{
INCLUDEPATH += /usr/include \
/usr/local/include \
/usr/include/qt4/phonon
/usr/include/qt4/phonon \
/usr/include/phonon
LIBS += \
-L/usr/lib \
......@@ -215,7 +216,8 @@ linux-g++|linux-g++-64{
DEFINES += QGC_OSG_QT_ENABLED
}
exists(/usr/local/include/google/protobuf) {
exists(/usr/local/include/google/protobuf) |
exists(/usr/include/google/protobuf) {
message("Building support for Protocol Buffers")
DEPENDENCIES_PRESENT += protobuf
# Include Protocol Buffers libraries
......@@ -226,7 +228,8 @@ linux-g++|linux-g++-64{
DEFINES += QGC_PROTOBUF_ENABLED
}
exists(/usr/local/include/libfreenect/libfreenect.h) {
exists(/usr/local/include/libfreenect/libfreenect.h) |
exists(/usr/include/libfreenect/libfreenect.h) {
message("Building support for libfreenect")
DEPENDENCIES_PRESENT += libfreenect
INCLUDEPATH += /usr/include/libusb-1.0
......@@ -256,7 +259,7 @@ linux-g++ {
linux-g++-64 {
message("Building for GNU/Linux 64bit/x64 (g++-64)")
exists(/usr/local/lib64) {
LIBS += -L/usr/local/lib64
LIBS += -L/usr/local/lib64 -L/usr/lib64
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment