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 cfd72fe commit cba5864
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 20 deletions.
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 @@ -266,5 +264,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")
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 @@ -259,5 +257,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 lwesp/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")

# Library core sources
set(lwesp_core_SRCS
${CMAKE_CURRENT_LIST_DIR}/src/lwesp/lwesp_dhcp.c
Expand Down Expand Up @@ -83,6 +80,3 @@ target_include_directories(lwesp_api INTERFACE ${lwesp_include_DIRS})
add_library(lwesp_apps INTERFACE)
target_sources(lwesp_apps PUBLIC ${lwesp_allapps_SRCS})
target_include_directories(lwesp_apps INTERFACE ${lwesp_include_DIRS})

# Debug message
message("Exiting ${CMAKE_CURRENT_LIST_DIR}/CMakeLists.txt")
6 changes: 0 additions & 6 deletions snippets/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")


# Setup generic source files
set(lwesp_snippets_SRCS
Expand Down Expand Up @@ -31,6 +28,3 @@ set(lwesp_snippets_include_DIRS
add_library(lwesp_snippets INTERFACE)
target_sources(lwesp_snippets PUBLIC ${lwesp_snippets_SRCS})
target_include_directories(lwesp_snippets INTERFACE ${lwesp_snippets_include_DIRS})

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

0 comments on commit cba5864

Please sign in to comment.