mirror of
https://github.com/KhronosGroup/Vulkan-Headers
synced 2024-11-21 06:26:00 -07:00
build: Fix CMake warning
Currently GNUInstallDirs is complaining because no language has been enabled. This is fixed by enabling the C language.
This commit is contained in:
parent
ff03306bf9
commit
52b7c620a5
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue