paysages3d/src/system/system.pro

43 lines
711 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
TEMPLATE = lib
TARGET = paysages_system
2013-10-20 12:34:55 +00:00
DEFINES += SYSTEM_LIBRARY
2013-11-09 17:56:56 +00:00
include(../common.pri)
2013-10-20 12:34:55 +00:00
SOURCES += \
PictureFile.cpp \
2013-10-20 13:01:57 +00:00
Thread.cpp \
Mutex.cpp \
System.cpp \
2013-11-03 14:46:39 +00:00
PackStream.cpp \
RandomGenerator.cpp \
Memory.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 \
System.h \
2013-11-03 14:46:39 +00:00
PackStream.h \
RandomGenerator.h \
Memory.h
2013-10-20 12:34:55 +00:00
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}