paysages3d/src/system/system.pro

61 lines
1 KiB
Prolog

#-------------------------------------------------
#
# Project created by QtCreator 2013-10-20T11:38:08
#
#-------------------------------------------------
#QT -= gui
TEMPLATE = lib
TARGET = paysages_system
DEFINES += SYSTEM_LIBRARY
include(../common.pri)
SOURCES += \
Thread.cpp \
Mutex.cpp \
System.cpp \
PackStream.cpp \
RandomGenerator.cpp \
Memory.cpp \
ParallelWork.cpp \
CacheFile.cpp \
PictureWriter.cpp \
Logs.cpp \
ParallelPool.cpp \
ParallelWorker.cpp \
Semaphore.cpp \
FileSystem.cpp \
DataFile.cpp \
Time.cpp
HEADERS += \
system_global.h \
Thread.h \
Mutex.h \
System.h \
PackStream.h \
RandomGenerator.h \
Memory.h \
ParallelWork.h \
CacheFile.h \
PictureWriter.h \
Logs.h \
ParallelPool.h \
ParallelWorker.h \
Semaphore.h \
FileSystem.h \
DataFile.h \
Time.h
unix:!symbian {
maemo5 {
target.path = /opt/usr/lib
} else {
target.path = /usr/lib
}
INSTALLS += target
}