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

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.
12 lines
174 B
CMake
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)
|