Enhanced SIM for E2AP v1 for TS UC
[sim/e2-interface.git] / e2sim / e2apv1sim / CMakeLists.txt
1 #/*****************************************************************************
2 #                                                                            *
3 # Copyright 2019 AT&T Intellectual Property                                  *
4 # Copyright 2019 Nokia                                                       *
5 #                                                                            *
6 # Licensed under the Apache License, Version 2.0 (the "License");            *
7 # you may not use this file except in compliance with the License.           *
8 # You may obtain a copy of the License at                                    *
9 #                                                                            *
10 #      http://www.apache.org/licenses/LICENSE-2.0                            *
11 #                                                                            *
12 # Unless required by applicable law or agreed to in writing, software        *
13 # distributed under the License is distributed on an "AS IS" BASIS,          *
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.   *
15 # See the License for the specific language governing permissions and        *
16 # limitations under the License.                                             *
17 #                                                                            *
18 #******************************************************************************/
19
20 cmake_minimum_required(VERSION 3.5.1)
21 set(CMAKE_CXX_COMPILER "/usr/bin/g++")
22 set(CMAKE_CXX_STANDARD 14)
23
24
25
26 project(e2sim)
27
28 set (E2SIM_ROOT ./)
29
30
31 include_directories("${E2SIM_ROOT}")
32 include_directories("${E2SIM_ROOT}/src")
33 include_directories("${E2SIM_ROOT}/src/DEF")
34 include_directories("${E2SIM_ROOT}/src/SCTP/")
35 include_directories("${E2SIM_ROOT}/src/E2AP")
36 include_directories("${E2SIM_ROOT}/src/E2AP/E2SM")
37 include_directories("${E2SIM_ROOT}/ASN1c")
38
39
40
41 find_library( SCTP_STD_LIB sctp )  #needed for sctp_sendmsg
42
43 #----------------------------------------------
44 file(GLOB E2SIM_SOURCES
45   "${E2SIM_ROOT}/e2sim.cpp"
46   "${E2SIM_ROOT}/encode_kpm.cpp"
47   "${E2SIM_ROOT}/encode_e2apv1.cpp"
48   "${E2SIM_ROOT}/src/DEF/*.cpp"
49   "${E2SIM_ROOT}/src/SCTP/*.cpp"
50   "${E2SIM_ROOT}/src/E2AP/*.c"
51   "${E2SIM_ROOT}/src/E2AP/*.cpp"
52   "${E2SIM_ROOT}/ASN1c/*.c"
53
54   )
55 add_executable(e2sim ${E2SIM_SOURCES})
56 target_link_libraries( e2sim ${SCTP_STD_LIB} )
57
58 #----------------------------------------------
59 file(GLOB RICSIM_SOURCES
60
61   "${E2SIM_ROOT}/ricsim.cpp"
62       "${E2SIM_ROOT}/encode_kpm.cpp"
63       "${E2SIM_ROOT}/encode_e2apv1.cpp"
64       "${E2SIM_ROOT}/src/DEF/*.cpp"
65       "${E2SIM_ROOT}/src/SCTP/*.cpp"
66       "${E2SIM_ROOT}/src/E2AP/*.c"
67       "${E2SIM_ROOT}/src/E2AP/*.cpp"
68       "${E2SIM_ROOT}/ASN1c/*.c"
69
70       )
71 add_executable(ricsim ${RICSIM_SOURCES})
72 target_link_libraries( ricsim ${SCTP_STD_LIB} )