Skip to content

Commit

Permalink
Remove entering/exiting debug messages
Browse files Browse the repository at this point in the history
  • Loading branch information
MaJerle committed Apr 23, 2023
1 parent aeda7f2 commit e5cf185
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 10 deletions.
4 changes: 0 additions & 4 deletions examples/stm32/lwprintf_stm32l432kc_nucleo/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
cmake_minimum_required(VERSION 3.22)

message("Entering ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt")

#
# Core project settings
#
Expand Down Expand Up @@ -220,5 +218,3 @@ add_custom_command(TARGET ${EXECUTABLE} POST_BUILD
add_custom_command(TARGET ${EXECUTABLE} POST_BUILD
COMMAND ${CMAKE_OBJCOPY} -O binary $<TARGET_FILE:${EXECUTABLE}> ${EXECUTABLE}.bin
)

message("Exiting ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt")
6 changes: 0 additions & 6 deletions lwprintf/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
cmake_minimum_required(VERSION 3.22)

# Debug message
message("Entering ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt")

# Register core library
add_library(lwprintf INTERFACE)
target_sources(lwprintf PUBLIC ${CMAKE_CURRENT_LIST_DIR}/src/lwprintf/lwprintf.c)
Expand All @@ -12,6 +9,3 @@ if (DEFINED LWPRINTF_SYS_PORT)
target_sources(lwprintf PUBLIC
${CMAKE_CURRENT_LIST_DIR}/src/system/lwprintf_sys_${LWPRINTF_SYS_PORT}.c)
endif()

# Debug message
message("Exiting ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt")

0 comments on commit e5cf185

Please sign in to comment.