mirror of
https://github.com/espressif/esp-lwip.git
synced 2026-06-06 05:14:42 +00:00
0866f57860
In some cases it's necessary to test more complex scenarios than single thread unit tests. The initial socket test uses two threads to verify basic TCP client-server communicaton. Ref IDF-4797
17 lines
563 B
CMake
17 lines
563 B
CMake
# This file is indended to be included in end-user CMakeLists.txt
|
|
# include(/path/to/Filelists.cmake)
|
|
# It assumes the variable LWIP_DIR is defined pointing to the
|
|
# root path of lwIP sources.
|
|
#
|
|
# This file is NOT designed (on purpose) to be used as cmake
|
|
# subdir via add_subdirectory()
|
|
# The intention is to provide greater flexibility to users to
|
|
# create their own targets using the *_SRCS variables.
|
|
|
|
set(LWIP_TESTDIR ${LWIP_DIR}/test/apps)
|
|
set(LWIP_TESTFILES
|
|
${LWIP_TESTDIR}/test_apps.c
|
|
${LWIP_TESTDIR}/test_sockets.c
|
|
${LWIP_TESTDIR}/linux/sys_arch.c
|
|
)
|