-
Notifications
You must be signed in to change notification settings - Fork 1
/
ucapa.pro
53 lines (43 loc) · 1.28 KB
/
ucapa.pro
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#-------------------------------------------------
#
# Project created by QtCreator 2013-12-10T17:50:41
#
# This project build only the UCAPA lib.
#
#-------------------------------------------------
TARGET = ucapa
TEMPLATE = lib
CONFIG += c++11 \
staticlib
CONFIG -= app_bundle \
qt
DESTDIR = $$_PRO_FILE_PWD_/lib
DEFINES += ASIO_STANDALONE
# As our dependencies are not too big, we put them into an external/ subdirectory.
INCLUDEPATH += ./include \
./external/asio/include/ \
./external/ffmpeg/include/
win32 {
LIBS += -lws2_32 -lmswsock
LIBS += -L"$$_PRO_FILE_PWD_/external/ffmpeg/lib/" -lavformat -lavcodec -lswscale -lavutil
}
unix {
LIBS += -L/usr/local/lib -lavformat -lavcodec -lva -lz -lswscale -lavutil
# LIBS += -I/usr/local/include -pthread -L/usr/local/lib -lavformat -lavcodec -ldl -lvdpau -lva -lX11 -lasound -lSDL -lz -lswscale -lavutil -lm
}
SOURCES += \
src/ardrone.cpp \
src/ardroneconnections.cpp \
src/vector3.cpp \
src/navdata.cpp \
src/quaternion.cpp \
src/video.cpp
HEADERS += \
include/vector3.h \
include/ardroneconnections.h \
include/ardrone.h \
include/navdata.h \
include/utils.h \
include/matrix.h \
include/quaternion.h \
include/video.h