-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
113 lines (83 loc) · 3.5 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#
# This file is part of the µOS++ distribution.
# (https://github.com/micro-os-plus)
# Copyright (c) 2021 Liviu Ionescu
#
# Permission to use, copy, modify, and/or distribute this software
# for any purpose is hereby granted, under the terms of the MIT license.
#
# If a copy of the license was not distributed with this file, it can
# be obtained from https://opensource.org/licenses/MIT/.
#
# -----------------------------------------------------------------------------
# This file is intended to be consumed by applications with:
#
# `add_subdirectory("xpacks/micro-os-plus-devices-stm32f4-extras")`
#
# The result is an interface library that can be added to the linker with:
#
# `target_link_libraries(your-target PUBLIC micro-os-plus::devices-stm32f4-extras)`
# -----------------------------------------------------------------------------
## Preamble ##
# https://cmake.org/cmake/help/v3.20/
cmake_minimum_required(VERSION 3.20)
project(
micro-os-plus-devices-stm32f4-extras
DESCRIPTION "µOS++ complementary STM32F4 files"
)
if(COMMAND xpack_get_package_name_and_version)
xpack_get_package_name_and_version("${CMAKE_CURRENT_SOURCE_DIR}/package.json")
message(VERBOSE "Processing xPack ${PACKAGE_JSON_NAME}@${PACKAGE_JSON_VERSION}...")
endif()
# -----------------------------------------------------------------------------
## The project library definitions ##
# https://cmake.org/cmake/help/v3.20/command/add_library.html?highlight=interface#normal-libraries
# PRIVATE: build definitions, used internally
# INTERFACE: usage definitions, passed up to targets linking to it
# PUBLIC: both
# -----------------------------------------------------------------------------
# Preprocessor symbols.
set(xpack_device_family_compile_definition "STM32F4")
# -----------------------------------------------------------------------------
# This function is called to instantiate libraries for all known devices.
function(add_micro_os_plus_device_stm32f4_extra_library symbol_name)
# The file name part is derived from the symbol.
string(TOLOWER ${symbol_name} name)
add_library(micro-os-plus-devices-${name}-extras-interface INTERFACE EXCLUDE_FROM_ALL)
target_include_directories(
micro-os-plus-devices-${name}-extras-interface
INTERFACE
"include"
)
target_sources(
micro-os-plus-devices-${name}-extras-interface
INTERFACE
"src/vectors/vectors_${name}.c"
)
target_compile_definitions(
micro-os-plus-devices-${name}-extras-interface
INTERFACE
"${xpack_device_family_compile_definition}"
"${symbol_name}"
)
target_compile_options(
micro-os-plus-devices-${name}-extras-interface
INTERFACE
# ... perhaps ignore some warnings.
)
target_link_libraries(
micro-os-plus-devices-${name}-extras-interface
INTERFACE
micro-os-plus::architecture-cortexm
)
# if (COMMAND xpack_display_target_lists)
# xpack_display_target_lists(micro-os-plus-devices-${name}-extras-interface)
# endif()
# -----------------------------------------------------------------------------
# Aliases.
add_library(micro-os-plus::devices-${name}-extras ALIAS micro-os-plus-devices-${name}-extras-interface)
message(VERBOSE "> micro-os-plus::devices-${name}-extras -> micro-os-plus-devices-${name}-extras-interface")
endfunction()
# -----------------------------------------------------------------------------
include("${CMAKE_CURRENT_SOURCE_DIR}/cmake/add_devices_libraries.cmake")
# -----------------------------------------------------------------------------