-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
82 lines (64 loc) · 2.04 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
cmake_minimum_required(VERSION 3.22)
#
# This file is generated only once and is not re-generated if the converter is called multiple times.
# The user is free to modify the file as much as necessary.
#
# Setup compiler settings
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_C_EXTENSIONS ON)
# Define the build type
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug")
endif()
# Set the project name
set(CMAKE_PROJECT_NAME STM32F746DISCO-TinyUSB-MSC)
# Include toolchain file for ARM GCC
include("cmake/gcc-arm-none-eabi.cmake")
# Enable compile commands to ease indexing with tools like clangd
set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
# Enable CMake support for ASM and C languages
enable_language(C ASM)
# Core project settings
project(${CMAKE_PROJECT_NAME})
message("Build type: ${CMAKE_BUILD_TYPE}")
# Create an executable object type
add_executable(${CMAKE_PROJECT_NAME})
# Add STM32CubeMX generated sources
add_subdirectory(cmake/stm32cubemx)
# Define the TinyUSB configuration target as an INTERFACE library
add_library(tinyusb_config INTERFACE)
# Add TinyUSB include paths
target_include_directories(tinyusb_config INTERFACE
Core/Inc
tinyusb/src
tinyusb/hw
)
# Add TinyUSB directory
add_subdirectory(tinyusb/src)
# Link directories setup (if needed, add user-defined library search paths)
target_link_directories(${CMAKE_PROJECT_NAME} PRIVATE
# Add user-defined library search paths
)
# Add sources to executable
target_sources(${CMAKE_PROJECT_NAME} PRIVATE
# TinyUSB Example (CDC-MSC) source files
Core/Src/msc_disk.c
Core/Src/usb_descriptors.c
tinyusb/src/portable/synopsys/dwc2/dcd_dwc2.c
)
# Add include paths to the main executable
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE
# Add user-defined include paths
)
# Add project symbols (macros)
target_compile_definitions(${CMAKE_PROJECT_NAME} PRIVATE
# Add user-defined symbols
)
# Add linked libraries
target_link_libraries(${CMAKE_PROJECT_NAME}
stm32cubemx
# TinyUSB Library Stack
tinyusb_config
tinyusb
)