mirror of
https://github.com/cesanta/mongoose.git
synced 2024-12-13 16:09:00 +08:00
25 lines
826 B
CMake
25 lines
826 B
CMake
cmake_minimum_required(VERSION 3.13)
|
|
include(pico-sdk/pico_sdk_init.cmake)
|
|
|
|
project(firmware)
|
|
pico_sdk_init()
|
|
add_executable(firmware main.c mongoose.c net.c packed_fs.c)
|
|
target_include_directories(firmware PUBLIC .)
|
|
|
|
target_link_libraries(firmware pico_stdlib hardware_spi pico_rand)
|
|
pico_add_extra_outputs(firmware) # create map/bin/hex file etc.
|
|
|
|
pico_enable_stdio_usb(firmware 0) # Route stdio
|
|
pico_enable_stdio_uart(firmware 1) # to the UART, for remote testing
|
|
|
|
# Mongoose build flags
|
|
add_definitions(-DMG_ENABLE_TCPIP=1)
|
|
add_definitions(-DMG_ENABLE_DRIVER_W5500=1)
|
|
add_definitions(-DMG_ENABLE_PACKED_FS=1)
|
|
add_definitions(-DMG_ENABLE_CUSTOM_RANDOM=1)
|
|
add_definitions(-DMG_ENABLE_POSIX_FS=0)
|
|
|
|
# Example build options
|
|
add_definitions(-DHTTP_URL="http://0.0.0.0/")
|
|
add_definitions(-DHTTPS_URL="https://0.0.0.0/")
|