generated from amazon-archives/__template_MIT-0
-
Notifications
You must be signed in to change notification settings - Fork 71
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
22 lines (16 loc) · 925 Bytes
/
CMakeLists.txt
File metadata and controls
22 lines (16 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
cmake_minimum_required( VERSION 3.15 )
project( FreeRTOS-Cellular-Interface LANGUAGES C )
# ------------------------------------------------------------------------------
# Includes
# ------------------------------------------------------------------------------
include( ${CMAKE_CURRENT_LIST_DIR}/cellularInterfaceFilePaths.cmake )
# ------------------------------------------------------------------------------
# Library targets
# ------------------------------------------------------------------------------
add_library( cellular_interface INTERFACE )
target_sources( cellular_interface INTERFACE ${CELLULAR_COMMON_SOURCES} )
target_include_directories( cellular_interface INTERFACE
${CELLULAR_INCLUDE_DIRS}
${CELLULAR_COMMON_INCLUDE_DIRS}
${CELLULAR_INTERFACE_INCLUDE_DIRS}
${CELLULAR_PRIVATE_DIRS} )