Enhanced SIM for E2AP v1 for TS UC
[sim/e2-interface.git] / e2sim / e2apv1sim / test / X2 / 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 add_definitions("-D ASN_DISABLE_OER_SUPPORT")
25
26 project(x2term)
27
28 set (E2SIM_ROOT ../../)
29
30 include_directories("${E2SIM_ROOT}/src")
31 include_directories("${E2SIM_ROOT}/src/DEF")
32 include_directories("${E2SIM_ROOT}/src/SCTP/")
33 include_directories("${E2SIM_ROOT}/src/E2AP")
34 include_directories("${E2SIM_ROOT}/src/E2AP/E2SM")
35 include_directories("${E2SIM_ROOT}/ASN1c")
36
37 find_library( SCTP_STD_LIB sctp )  #needed for sctp_sendmsg
38
39 #----------------------------------------------
40 file(GLOB X2TERM_SOURCES
41       "${E2SIM_ROOT}/test/X2/x2term.cpp"
42       "${E2SIM_ROOT}/src/DEF/*.cpp"
43       "${E2SIM_ROOT}/src/SCTP/*.cpp"
44       "${E2SIM_ROOT}/src/E2AP/*.c"
45       "${E2SIM_ROOT}/src/E2AP/*.cpp"
46       "${E2SIM_ROOT}/ASN1c/*.c"
47       )
48 add_executable(x2term ${X2TERM_SOURCES})
49 target_link_libraries( x2term  ${SCTP_STD_LIB} )