Update CMakeLists.txt

Added C to the project langs to prevent compilation failure on certain platform/compiler combos.
This commit is contained in:
Luca Sas 2021-07-07 21:15:11 +01:00 committed by GitHub
parent bdab2b8a6e
commit 90c7e03b6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(raylib_template CXX)
project(raylib_template C CXX)
set(CMAKE_CXX_STANDARD 17)