From 07c59a83d1255e9772afd13299955bf710bbe988 Mon Sep 17 00:00:00 2001 From: Xavier Del Campo Romero Date: Fri, 15 Sep 2023 14:56:34 +0200 Subject: CMakeLists.txt: Fix examples not building Default value for a CMake option() must always be passed as the third parameter. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 9127b07..093cf1f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 -- cgit v1.2.3