mirror of
https://github.com/eclipse/wakaama.git
synced 2025-05-08 23:31:37 +08:00

The examples are now individual projects, which use Wakaama as external dependency. There is no need anymore to enable the examples in the CMake project.
10 lines
146 B
CMake
10 lines
146 B
CMake
cmake_minimum_required(VERSION 3.21)
|
|
|
|
project(wakaama C)
|
|
|
|
include(wakaama.cmake)
|
|
|
|
# Enable "test" target
|
|
enable_testing()
|
|
add_subdirectory(tests)
|