From 338c04ec91f0fade0b29f9861114673696e7a1af Mon Sep 17 00:00:00 2001 From: Michael Carlberg Date: Tue, 28 Jun 2016 23:10:25 +0200 Subject: [PATCH] fix(cmake): Enable C support for the project --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 69f49bee..47bafc1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -2,7 +2,7 @@ # Build configuration # cmake_minimum_required(VERSION 3.1) -project(lemonbuddy CXX) +project(lemonbuddy C CXX) # Include the local cmake modules set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")