From d3fa75977bac45676794043dc65c9c07f3ab39e1 Mon Sep 17 00:00:00 2001 From: Mathieu Schroeter Date: Fri, 24 Jun 2022 23:47:21 +0200 Subject: [PATCH] Ensure to use Unix Makefiles generator Because ninja cannot be used here without changes in the scripts. --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4572ece..558f219 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,8 @@ cmake_minimum_required (VERSION 3.2) +set (CMAKE_GENERATOR "Unix Makefiles" CACHE INTERNAL "" FORCE) + include (${CMAKE_ROOT}/Modules/ExternalProject.cmake) include_directories (${CMAKE_BINARY_DIR}/include)