1
0
Fork 0

CMakeLists.txt: Fix missing LANGUAGES

When the language name is not the only argument for project() (other
than the project name itself), LANGUAGES must be indicated.
This commit is contained in:
Xavier Del Campo Romero 2023-11-10 14:45:46 +01:00
parent dbdaac757f
commit 69d615df3d
Signed by untrusted user: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.13.5)
option(BUILD_EXAMPLES "Build examples" ON)
project(web C VERSION 0.1.0)
project(web LANGUAGES C VERSION 0.1.0)
add_library(${PROJECT_NAME}
handler.c
html.c