From 52b7c620a5403241aa62c0cd3388384245a8b094 Mon Sep 17 00:00:00 2001 From: Juan Ramos Date: Thu, 3 Nov 2022 10:13:36 -0600 Subject: [PATCH] build: Fix CMake warning Currently GNUInstallDirs is complaining because no language has been enabled. This is fixed by enabling the C language. --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 472dec6..50b5d89 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -20,8 +20,7 @@ cmake_minimum_required(VERSION 3.10.2) -# NONE = this project has no language toolchain requirement. -project(Vulkan-Headers NONE) +project(Vulkan-Headers LANGUAGES C) # User-interface declarations ---------------------------------------------------------------------------------------------------- # This section contains variables that affect development GUIs (e.g. CMake GUI and IDEs), such as option(), folders, and variables