79 lines
2.1 KiB
CMake
79 lines
2.1 KiB
CMake
cmake_minimum_required(VERSION 3.22)
|
|
|
|
#
|
|
# This file is generated only once,
|
|
# and is not re-generated if converter is called multiple times.
|
|
#
|
|
# 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 vn200)
|
|
|
|
# Include toolchain file
|
|
include("cmake/gcc-arm-none-eabi.cmake")
|
|
|
|
# Enable compile command to ease indexing with e.g. clangd
|
|
set(CMAKE_EXPORT_COMPILE_COMMANDS TRUE)
|
|
SET_SOURCE_FILES_PROPERTIES( Core/Src/main.c PROPERTIES LANGUAGE CXX )
|
|
|
|
# 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)
|
|
|
|
#find_package(vn-interface)
|
|
#find_package(can-transceiver-lib)
|
|
|
|
# Link directories setup
|
|
target_link_directories(${CMAKE_PROJECT_NAME} PRIVATE
|
|
# Add user defined library search paths
|
|
)
|
|
|
|
# Add sources to executable
|
|
target_sources(${CMAKE_PROJECT_NAME} PRIVATE
|
|
Converter/Src/canhalal.cpp
|
|
Converter/Src/Converter.cpp
|
|
)
|
|
|
|
# Add include paths
|
|
target_include_directories(${CMAKE_PROJECT_NAME} PRIVATE
|
|
Converter/Inc
|
|
Libs/can-transceiver-lib/include
|
|
Libs/vn-interface/include
|
|
)
|
|
|
|
# Add project symbols (macros)
|
|
target_compile_definitions(${CMAKE_PROJECT_NAME} PRIVATE
|
|
# Add user defined symbols
|
|
)
|
|
|
|
# Add linked libraries
|
|
# We want to link them very explicitly from our build folder in this repo for the case of multiple repos and different MCUs.
|
|
# Linking the usual way in /usr/local could cause difficulties in designing such libraries due to different compiler flags for different MCU types.
|
|
target_link_libraries(${CMAKE_PROJECT_NAME}
|
|
stm32cubemx
|
|
# Add user defined libraries
|
|
${CMAKE_SOURCE_DIR}/Libs/can-transceiver-lib/build/libcan-transceiver-lib.a
|
|
${CMAKE_SOURCE_DIR}/Libs/vn-interface/build/libvn-interface.a
|
|
)
|