Revert "Revert "formatting""

This reverts commit 4c5b6b1319.
This commit is contained in:
Francisco Herrera 2024-07-10 22:20:42 -03:00
parent 4c5b6b1319
commit 6ccc10a881
1 changed files with 11 additions and 11 deletions

View File

@ -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 "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/csrc>" "$<INSTALL_INTERFACE:include>")
add_library(u8g2 ${COMPONENT_SRCS})
target_include_directories(u8g2 PUBLIC "$<BUILD_INTERFACE:${CMAKE_CURRENT_LIST_DIR}/csrc>" "$<INSTALL_INTERFACE:include>")
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)