From 9e597e0dda31ebc547ba0299c713327c2cccab7b Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 16 Sep 2020 03:02:12 -0500 Subject: [PATCH] Building nextpnr on Devuan ascii 2.0 needs the "C" language enabled. See https://lists.j-core.org/pipermail/j-core/2020-September/000940.html --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b70bb7c4..d9c18554 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.5) -project(nextpnr CXX) +project(nextpnr CXX C) option(BUILD_GUI "Build GUI" ON) option(BUILD_PYTHON "Build Python Integration" ON)