Made webserver work at 192.168.4.1
This commit is contained in:
18
lib/dhcp_server/CMakeLists.txt
Normal file
18
lib/dhcp_server/CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.13)
|
||||
|
||||
add_library(dhcp_server STATIC
|
||||
dhcp_server.c
|
||||
)
|
||||
|
||||
target_include_directories(dhcp_server
|
||||
PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
PRIVATE
|
||||
${CMAKE_SOURCE_DIR}/../sensor-pico
|
||||
)
|
||||
|
||||
target_link_libraries(dhcp_server
|
||||
pico_stdlib
|
||||
pico_lwip
|
||||
pico_cyw43_arch_lwip_threadsafe_background
|
||||
)
|
||||
Reference in New Issue
Block a user