forked from TexasInstruments/ot-ti
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
76 lines (63 loc) · 3.32 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#
# Copyright (c) 2020, The OpenThread Authors.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. Neither the name of the copyright holder nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
cmake_minimum_required(VERSION 3.10.2)
project(ot-cc13x2-cc26x2 VERSION 1.3.0.0)
set(OT_PACKAGE_VERSION "1.3.0.1" CACHE STRING "ot-ti version" FORCE)
if(NOT DEFINED TI_SIMPLELINK_KERNEL)
set(TI_SIMPLELINK_KERNEL "freertos" CACHE STRING "")
endif()
include(boards.cmake)
set(OT_PLATFORM_LIB "openthread-cc13xx_cc26xx")
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib)
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/lib)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${PROJECT_BINARY_DIR}/bin)
set(FREERTOS_CONFIG_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
set(OT_EXTERNAL_MBEDTLS "ti-mbedtls" CACHE STRING "Use TI hardware accelerated mbedtls" FORCE)
set(OT_BUILTIN_MBEDTLS_MANAGEMENT ON CACHE BOOL "Have OpenThread manage mbedtls")
set(OT_BUILD_EXECUTABLES OFF CACHE BOOL "Build OpenThread executables")
set(BUILD_TESTING OFF CACHE BOOL "Build test executables")
option(TI_BUILD_EXECUTABLES "Build executables" ON)
add_subdirectory(openthread)
if(TI_SIMPLELINK_KERNEL STREQUAL "freertos")
add_subdirectory(third_party/freertos)
endif()
add_subdirectory(third_party/ti_simplelink_sdk)
add_subdirectory(third_party/mbedtls)
add_subdirectory(src)
add_subdirectory(examples)
set(OPENTHREAD_CONFIG_FILE "openthread-core-cc13xx_cc26xx-config.h")
set(OPENTHREAD_PROJECT_CORE_CONFIG_FILE "openthread-core-cc13xx_cc26xx-config.h")
set(OPENTHREAD_CORE_CONFIG_PLATFORM_CHECK_FILE "openthread-core-cc13xx_cc26xx-config-check.h")
target_compile_definitions(ot-config INTERFACE
"OPENTHREAD_CONFIG_FILE=\"${OPENTHREAD_CONFIG_FILE}\""
"OPENTHREAD_PROJECT_CORE_CONFIG_FILE=\"${OPENTHREAD_PROJECT_CORE_CONFIG_FILE}\""
"OPENTHREAD_CORE_CONFIG_PLATFORM_CHECK_FILE=\"${OPENTHREAD_CORE_CONFIG_PLATFORM_CHECK_FILE}\""
)
target_include_directories(ot-config INTERFACE
${PROJECT_SOURCE_DIR}/src
)