1
0
Fork 0

CMakeLists.txt: Fix examples not building

Default value for a CMake option() must always be passed as the third
parameter.
This commit is contained in:
Xavier Del Campo Romero 2023-09-15 14:56:34 +02:00
parent 5be3ffdd3b
commit 07c59a83d1
Signed by untrusted user: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13.5)
option(BUILD_EXAMPLES ON)
option(BUILD_EXAMPLES "Build examples" ON)
project(slweb C)
add_library(${PROJECT_NAME}
handler.c