From 212651e74fbeaac0523d407d8ee58bd2c0681767 Mon Sep 17 00:00:00 2001 From: Francisco Herrera Date: Wed, 10 Jul 2024 21:18:02 -0300 Subject: [PATCH] formatting --- CMakeLists.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fa61485d..44e39a33 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -5,29 +5,29 @@ file(GLOB COMPONENT_SRCS csrc/*.c) file(GLOB COMPONENT_HDRS csrc/*.h) if(COMMAND idf_component_register) - idf_component_register(SRCS "${COMPONENT_SRCS}" INCLUDE_DIRS csrc) - return() + idf_component_register(SRCS "${COMPONENT_SRCS}" INCLUDE_DIRS csrc) + return() endif() project(u8g2) if(COMMAND register_component) - set(COMPONENT_NAME ".") - register_component() + set(COMPONENT_NAME ".") + register_component() else() - add_library(u8g2 ${COMPONENT_SRCS}) - target_include_directories(u8g2 PUBLIC "$" "$") + add_library(u8g2 ${COMPONENT_SRCS}) + target_include_directories(u8g2 PUBLIC "$" "$") endif() install(TARGETS u8g2 - EXPORT u8g2-targets - ARCHIVE DESTINATION lib) + EXPORT u8g2-targets + ARCHIVE DESTINATION lib) install(FILES ${COMPONENT_HDRS} - DESTINATION include/u8g2) + DESTINATION include/u8g2) install(EXPORT u8g2-targets - DESTINATION lib/cmake/u8g2) + DESTINATION lib/cmake/u8g2) install(FILES ${u8g2_SOURCE_DIR}/pkg/u8g2-config.cmake - DESTINATION lib/cmake/u8g2) + DESTINATION lib/cmake/u8g2)