stm32-f4discovery-cc256x: print current example

This commit is contained in:
Matthias Ringwald 2025-01-14 09:58:50 +01:00
parent 05a1f02730
commit 464f151ea4

View File

@ -32,7 +32,6 @@ 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})
@ -54,6 +53,10 @@ if( DEFINED ENV{EXAMPLES} )
set(EXAMPLES $ENV{EXAMPLES})
endif()
# Build information
message("Build: ${CMAKE_BUILD_TYPE}")
message("Example: ${EXAMPLES}\n")
# Include BTStack
include (cmake/btstack.cmake)