diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-15 14:56:34 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-09-15 14:56:34 +0200 |
| commit | 07c59a83d1255e9772afd13299955bf710bbe988 (patch) | |
| tree | cddddd91fc8be8ff09669765d4f51aa865f5859d /CMakeLists.txt | |
| parent | 5be3ffdd3bfd96b314509f6f03e211e309d0fef3 (diff) | |
| download | libweb-07c59a83d1255e9772afd13299955bf710bbe988.tar.gz | |
CMakeLists.txt: Fix examples not building
Default value for a CMake option() must always be passed as the third
parameter.
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
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 |
