wakaama/CMakeLists.txt
Lukas Woodtli 96ac07b24a cmake: Require version 3.21
CMake 3.21 does not remove a normal variable if a cache variable of the
same name is set. This is the CMake policy CMP0126.
2024-09-03 10:53:36 +02:00

12 lines
174 B
CMake

cmake_minimum_required(VERSION 3.21)
project(wakaama C)
include(wakaama.cmake)
add_subdirectory(examples)
# Enable "test" target
enable_testing()
add_subdirectory(tests)