ci(clang): include all components in clang_build_test

This commit is contained in:
Ivan Grokhotkov
2024-07-12 12:17:01 +02:00
parent df65b3829e
commit 6c2824bdaa
2 changed files with 4 additions and 4 deletions

View File

@@ -3,5 +3,5 @@
cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
set(COMPONENTS main)
project(cpp_pthread)
# Note: not setting set(COMPONENTS main) here, this app should build all the components
project(clang_build_test)

View File

@@ -1,3 +1,3 @@
idf_component_register(SRCS "test_main.cpp"
INCLUDE_DIRS "."
PRIV_REQUIRES pthread bt)
INCLUDE_DIRS ".")
# Note: not setting PRIV_REQUIRES, this app should build all the components.