srsLTE/srsue/src/stack/upper/CMakeLists.txt

22 lines
619 B
CMake
Raw Normal View History

#
2021-03-19 03:45:56 -07:00
# Copyright 2013-2021 Software Radio Systems Limited
#
# By using this file, you agree to the terms and conditions set
# forth in the LICENSE file which can be found at the top level of
# the distribution.
#
add_subdirectory(test)
set(SOURCES nas.cc nas_emm_state.cc nas_idle_procedures.cc gw.cc usim_base.cc usim.cc tft_packet_filter.cc nas_base.cc)
if(HAVE_PCSC)
list(APPEND SOURCES "pcsc_usim.cc")
endif(HAVE_PCSC)
add_library(srsue_upper STATIC ${SOURCES})
2021-07-11 10:36:31 -07:00
target_link_libraries(srsue_upper ${ATOMIC_LIBS} srsran_asn1)
if(HAVE_PCSC)
target_link_libraries(srsue_upper ${PCSCLITE_LIBRARY})
endif(HAVE_PCSC)