mongoose/examples/zephyr/http-server/CMakeLists.txt

14 lines
368 B
CMake
Raw Normal View History

2022-03-31 23:58:27 +08:00
# Copyright (c) 2022 Cesanta Software Limited
# Mail: support@cesanta.com
#
# SPDX-License-Identifier: GPL2.0 or commercial
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(http_server)
#add_definitions(-DMG_ENABLE_LINES=1)
add_definitions(-DMG_ENABLE_SSI=0)
target_sources(app PRIVATE src/main.c src/mongoose.c)