1195972f6Sopenharmony_ci# This file is indended to be included in end-user CMakeLists.txt
2195972f6Sopenharmony_ci# include(/path/to/Filelists.cmake)
3195972f6Sopenharmony_ci# It assumes the variable LWIP_DIR is defined pointing to the
4195972f6Sopenharmony_ci# root path of lwIP sources.
5195972f6Sopenharmony_ci#
6195972f6Sopenharmony_ci# This file is NOT designed (on purpose) to be used as cmake
7195972f6Sopenharmony_ci# subdir via add_subdirectory()
8195972f6Sopenharmony_ci# The intention is to provide greater flexibility to users to 
9195972f6Sopenharmony_ci# create their own targets using the *_SRCS variables.
10195972f6Sopenharmony_ci
11195972f6Sopenharmony_ciset(LWIP_TESTDIR ${LWIP_DIR}/test/unit)
12195972f6Sopenharmony_ciset(LWIP_TESTFILES
13195972f6Sopenharmony_ci	${LWIP_TESTDIR}/lwip_unittests.c
14195972f6Sopenharmony_ci	${LWIP_TESTDIR}/api/test_sockets.c
15195972f6Sopenharmony_ci	${LWIP_TESTDIR}/arch/sys_arch.c
16195972f6Sopenharmony_ci	${LWIP_TESTDIR}/core/test_def.c
17195972f6Sopenharmony_ci	${LWIP_TESTDIR}/core/test_mem.c
18195972f6Sopenharmony_ci	${LWIP_TESTDIR}/core/test_netif.c
19195972f6Sopenharmony_ci	${LWIP_TESTDIR}/core/test_pbuf.c
20195972f6Sopenharmony_ci	${LWIP_TESTDIR}/core/test_timers.c
21195972f6Sopenharmony_ci	${LWIP_TESTDIR}/dhcp/test_dhcp.c
22195972f6Sopenharmony_ci	${LWIP_TESTDIR}/etharp/test_etharp.c
23195972f6Sopenharmony_ci	${LWIP_TESTDIR}/ip4/test_ip4.c
24195972f6Sopenharmony_ci	${LWIP_TESTDIR}/ip6/test_ip6.c
25195972f6Sopenharmony_ci	${LWIP_TESTDIR}/mdns/test_mdns.c
26195972f6Sopenharmony_ci	${LWIP_TESTDIR}/mqtt/test_mqtt.c
27195972f6Sopenharmony_ci	${LWIP_TESTDIR}/tcp/tcp_helper.c
28195972f6Sopenharmony_ci	${LWIP_TESTDIR}/tcp/test_tcp_oos.c
29195972f6Sopenharmony_ci	${LWIP_TESTDIR}/tcp/test_tcp.c
30195972f6Sopenharmony_ci	${LWIP_TESTDIR}/udp/test_udp.c
31195972f6Sopenharmony_ci)
32