-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathactor.pro
More file actions
40 lines (32 loc) · 933 Bytes
/
actor.pro
File metadata and controls
40 lines (32 loc) · 933 Bytes
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
#-------------------------------------------------
#
# Project created by QtCreator 2015-10-29T00:21:45
#
#-------------------------------------------------
QT -= core gui
TARGET = actor
TEMPLATE = lib
CONFIG += c++14
QMAKE_CXXFLAGS += -std=c++1y #-pedantic -Weffc++ -Wextra -Wall -Wfloat-equal -Wundef -Wshadow -Wpointer-arith -Wcast-align -Wstrict-overflow=5 -Wwrite-strings -Wcast-qual -Wswitch-default -Wswitch-enum -Wconversion -Wunreachable-code
DEFINES += ACTOR_LIBRARY
SOURCES += Message.cpp \
Executer.cpp \
Actor.cpp \
TQueue.cpp \
AbstractActor.cpp \
Storage.cpp \
storageHelpers/Runnable.cpp \
storageHelpers/Task.cpp
HEADERS += Message.h \
Executer.h \
baseLib/importWithoutWarning.h \
Actor.h \
TQueue.h \
AbstractActor.h \
Storage.h \
storageHelpers/Runnable.h \
storageHelpers/Task.h
unix {
target.path = /usr/lib
INSTALLS += target
}