From 5e4c4a689ce28898f02ee25e9891087b2623ddfa Mon Sep 17 00:00:00 2001 From: tamasmeszaros Date: Mon, 25 Nov 2019 10:56:50 +0100 Subject: [PATCH] According to cmake, minimum required call shall go before project(). BTW This will make boost config detect the right toolset on every platform. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 633ab3f19..a41229987 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ -project(PrusaSlicer) cmake_minimum_required(VERSION 3.2) +project(PrusaSlicer) include("version.inc") include(GNUInstallDirs)