paysages3d/src/system/system.pro

33 lines
536 B
Prolog
Raw Normal View History

2013-10-20 12:34:55 +00:00
#-------------------------------------------------
#
# Project created by QtCreator 2013-10-20T11:38:08
#
#-------------------------------------------------
#QT -= gui
TARGET = paysages_system
TEMPLATE = lib
DEFINES += SYSTEM_LIBRARY
SOURCES += \
PictureFile.cpp \
2013-10-20 13:01:57 +00:00
Thread.cpp \
Mutex.cpp
2013-10-20 12:34:55 +00:00
HEADERS +=\
system_global.h \
PictureFile.h \
2013-10-20 13:01:57 +00:00
Thread.h \
Mutex.h
2013-10-20 12:34:55 +00:00
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}