mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-24 02:59:01 +08:00
10 lines
293 B
CMake
10 lines
293 B
CMake
# 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_client)
|
|
target_sources(app PRIVATE src/main.c src/mongoose.c)
|