-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
44 lines (40 loc) · 1.08 KB
/
CMakeLists.txt
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
cmake_minimum_required(VERSION 3.2)
project(RxActor)
add_definitions(-DMAKE_DLL_RxActor)
SET(LIB_NAME RxActor)
SET(EXTRA_LIBS BaseLib RxConcurrent RxSignal RxData RxTransport RxDiscovery)
SET(SOURCE_PATH ${ONE_SOURCE_DIR}/${LIB_NAME})
set(SOURCE_FILES
CommonDefines.h
Export.h
IncludeExtLibs.h
IncludeLibs.h
IncludeLibs.cpp
Actor.h
Supervisor.cpp
Supervisor.h
SupervisorAlgorithms.cpp
SupervisorAlgorithms.h
ActorProxy.cpp
ActorProxy.h
ActorPath.cpp
ActorPath.h
ActorSystem.cpp
ActorSystem.h
ActorPolicy.cpp
ActorPolicy.h
ActorData.h
SupervisorPolicy.cpp
SupervisorPolicy.h
SupervisorData.cpp
SupervisorData.h
ActorController.h
Processor.h
ActorControllerData.h
ActorControllerPolicy.cpp
ActorControllerPolicy.h
ActorComposer.h
)
include_directories(${ONE_SOURCE_DIR})
add_library(${LIB_NAME} SHARED ${SOURCE_FILES})
target_link_libraries(${LIB_NAME} ${EXTRA_LIBS})