From 8bc87e7c3fa262dc8f9053e3b831b20fe0028000 Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 20 Jun 2018 12:50:27 +1000 Subject: [PATCH] build: add C to the required language list This is required for various compilation tests (like CHECK_SIZE_TYPE). --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 81849a8f..70968f79 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.7.0) -project(util-cruft LANGUAGES CXX) +project(util-cruft LANGUAGES CXX C) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake") include(nc)