Subversion Repositories seema-scanner

Rev

Rev 1 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1 Rev 17
Line 1... Line -...
1
#-------------------------------------------------
-
 
2
#
1
QT += core
3
# Project created by QtCreator 2013-07-17T17:24:42
-
 
4
#
2
QT -= gui
5
#-------------------------------------------------
-
 
6
 
3
 
7
QT       += core
-
 
8
 
-
 
9
QT       -= gui
-
 
10
 
-
 
11
TARGET = simplecameratest
4
TARGET = testCamera
12
CONFIG   += console
5
CONFIG   += console
13
CONFIG   -= app_bundle
6
CONFIG   -= app_bundle
14
 
7
 
15
TEMPLATE = app
8
TEMPLATE = app
16
 
9
 
-
 
10
HEADERS +=  camera/Camera.h \
-
 
11
 
-
 
12
SOURCES += testCamera.cpp \
-
 
13
    camera/Camera.cpp \
17
 
14
 
18
SOURCES += simplecameratest.cpp
15
INCLUDEPATH += camera/
19
 
16
 
-
 
17
# OpenCV
-
 
18
CONFIG += link_pkgconfig
-
 
19
PKGCONFIG += opencv
-
 
20
 
-
 
21
# Compile with camera driver bindings
-
 
22
# Point Grey flycapture
-
 
23
unix:!macx:exists(/usr/include/flycapture/FlyCapture2.h){
-
 
24
    INCLUDEPATH += /usr/include/flycapture
-
 
25
    DEFINES += WITH_CAMERAPOINTGREY
20
LIBS += -lueye_api
26
    LIBS += -lflycapture
-
 
27
}
-
 
28
win32:exists("C:/Program Files/Point Grey Research/FlyCapture2/include/FlyCapture2.h"){
-
 
29
    DEFINES += WITH_CAMERAPOINTGREY
-
 
30
    INCLUDEPATH += "C:/Program Files/Point Grey Research/FlyCapture2/include/"
-
 
31
    LIBS += -L"C:/Program Files/Point Grey Research/FlyCapture2/lib64" -lFlyCapture2
-
 
32
}
-
 
33
contains(DEFINES, WITH_CAMERAPOINTGREY) {
-
 
34
    HEADERS += camera/CameraPointGrey.h
-
 
35
    SOURCES += camera/CameraPointGrey.cpp
-
 
36
}