forked from fledge-iot/fledge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
40 lines (34 loc) · 1.62 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
cmake_minimum_required (VERSION 2.8.8)
project (Fledge)
set(CMAKE_CXX_FLAGS "-std=c++11 -O3")
EXECUTE_PROCESS( COMMAND grep -o ^NAME=.* /etc/os-release COMMAND cut -f2 -d\" COMMAND sed s/\"//g OUTPUT_VARIABLE os_name )
EXECUTE_PROCESS( COMMAND grep -o ^VERSION_ID=.* /etc/os-release COMMAND cut -f2 -d\" COMMAND sed s/\"//g OUTPUT_VARIABLE os_version )
if ( ( ${os_name} MATCHES "Red Hat" OR ${os_name} MATCHES "CentOS") AND ( ${os_version} MATCHES "7" ) )
add_compile_options(-D RHEL_CENTOS_7)
message( "System is RHEL/CentOS 7" )
else()
message( "System is not RHEL/CentOS 7" )
endif()
find_package(PkgConfig REQUIRED)
add_subdirectory(C/common)
add_subdirectory(C/services/common)
add_subdirectory(C/plugins/common)
add_subdirectory(C/plugins/filter/common)
add_subdirectory(C/services/storage)
add_subdirectory(C/plugins/storage/common)
add_subdirectory(C/plugins/storage/postgres)
add_subdirectory(C/plugins/storage/sqlite)
add_subdirectory(C/plugins/storage/sqlitelb)
add_subdirectory(C/plugins/storage/sqlitememory)
add_subdirectory(C/services/south)
add_subdirectory(C/services/north)
add_subdirectory(C/services/south-plugin-interfaces/python)
add_subdirectory(C/services/south-plugin-interfaces/python/async_ingest_pymodule)
add_subdirectory(C/services/notification-plugin-interfaces/python)
add_subdirectory(C/services/filter-plugin-interfaces/python)
add_subdirectory(C/services/filter-plugin-interfaces/python/filter_ingest_pymodule)
add_subdirectory(C/services/north-plugin-interfaces/python)
add_subdirectory(C/tasks/north)
add_subdirectory(C/tasks/purge_system)
add_subdirectory(C/plugins/utils)
add_subdirectory(C/plugins/north/OMF)