mirror of
https://gitee.com/jiuyilian/embedded-framework.git
synced 2025-01-06 10:16:51 -05:00
15 lines
230 B
CMake
15 lines
230 B
CMake
enable_testing()
|
|
|
|
cmake_minimum_required(VERSION 3.13)
|
|
|
|
# set the project name
|
|
project(httpserver.h)
|
|
|
|
add_subdirectory(src)
|
|
|
|
add_subdirectory(test/unit)
|
|
add_subdirectory(test/functional)
|
|
|
|
add_test(NAME Unit COMMAND httpsrv-unit)
|
|
|