diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-11-10 14:45:46 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-11-10 14:45:46 +0100 |
| commit | 69d615df3d07496fa2c897420ee78a961481807f (patch) | |
| tree | 27e661c71b9924dcc42181f9801818a140705beb | |
| parent | dbdaac757fb9217e4b28afc05f1fe523f68d64d3 (diff) | |
| download | libweb-69d615df3d07496fa2c897420ee78a961481807f.tar.gz | |
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.
| -rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 0b0b0a1..25b6880 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 |
