-
Notifications
You must be signed in to change notification settings - Fork 17
/
CMakeLists.txt
67 lines (48 loc) · 1.54 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
# Copyright (c) 2020 ARM Limited. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.19.0 FATAL_ERROR)
set(MBED_PATH ${CMAKE_CURRENT_SOURCE_DIR}/mbed-os CACHE INTERNAL "")
set(MBED_CONFIG_PATH ${CMAKE_CURRENT_BINARY_DIR} CACHE INTERNAL "")
set(APP_TARGET mbed-os-example-blockdevice)
include(${MBED_PATH}/tools/cmake/app.cmake)
project(${APP_TARGET})
add_subdirectory(${MBED_PATH})
add_executable(${APP_TARGET})
mbed_configure_app_target(${APP_TARGET})
target_sources(${APP_TARGET}
PRIVATE
main.cpp
)
list(APPEND mbed_storage_libs)
if("DATAFLASH" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-dataflash)
endif()
if("FLASHIAP" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-flashiap)
endif()
if("I2CEE" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-i2cee)
endif()
if("OSPIF" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-ospif)
endif()
if("QSPIF" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-qspif)
endif()
if("SD" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-sd)
endif()
if("SPIF" IN_LIST MBED_TARGET_LABELS)
list(APPEND mbed_storage_libs mbed-storage-spif)
endif()
target_link_libraries(${APP_TARGET}
PRIVATE
mbed-os
mbed-storage
${mbed_storage_libs}
)
mbed_set_post_build(${APP_TARGET})
option(VERBOSE_BUILD "Have a verbose build process")
if(VERBOSE_BUILD)
set(CMAKE_VERBOSE_MAKEFILE ON)
endif()