-
Notifications
You must be signed in to change notification settings - Fork 4
/
CMakeLists.txt
85 lines (70 loc) · 2.86 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
###############################################################################
# Top level CMakeList for building the EVT phase1 project source code
###############################################################################
cmake_minimum_required(VERSION 3.15)
###############################################################################
# Convert CMake flags to compiler flags
###############################################################################
if(EVT_CORE_LOG_ENABLE)
add_compile_definitions(EVT_CORE_LOG_ENABLE)
endif()
# Handle selection of the target device
option(TARGET_DEV "Target device" "STM32F334x8")
if(NOT TARGET_DEV)
set(TARGET_DEV "STM32F334x8")
endif()
if(TARGET_DEV STREQUAL "STM32F302x8")
add_compile_definitions(STM32F302x8)
add_compile_definitions(STM32F3xx)
elseif(TARGET_DEV STREQUAL "STM32F334x8")
add_compile_definitions(STM32F334x8)
add_compile_definitions(STM32F3xx)
else()
message(FATAL_ERROR "The target device is not supported")
endif()
# Enable use of HAL Drivers
add_compile_definitions(USE_HAL_DRIVER)
###############################################################################
# Run EVT-core CMake files
###############################################################################
set(EVT_CORE_DIR ${CMAKE_SOURCE_DIR}/libs/EVT-core)
# Link to the EVT-core library
add_subdirectory(libs/EVT-core/)
include(CMakeDependentOption)
include(${EVT_CORE_DIR}/cmake/evt-core_compiler.cmake)
include(${EVT_CORE_DIR}/cmake/evt-core_install.cmake)
###############################################################################
# Project Setup
###############################################################################
set(BOARD_LIB_NAME rampup)
if("${BOARD_LIB_NAME}" STREQUAL BOARD_NAME)
message(FATAL_ERROR
"You must set the template project name in the top-level CMakeLists.txt")
endif()
file(STRINGS version.txt BOARD_VERSION)
project(${BOARD_LIB_NAME}
VERSION ${BOARD_VERSION}
LANGUAGES CXX C
)
add_library(${PROJECT_NAME} STATIC)
# Add sources
target_sources(${PROJECT_NAME} PRIVATE
src/dev/TMP117.cpp
src/dev/MAX22530.cpp
src/dev/HUDL.cpp
src/RampupBoard.cpp
)
###############################################################################
# Handle dependencies
###############################################################################
target_link_libraries(${PROJECT_NAME}
PUBLIC EVT
)
###############################################################################
# Install and expose library
###############################################################################
install_and_expose(${PROJECT_NAME})
###############################################################################
# Build Target Code
###############################################################################
add_subdirectory(targets)