From a38852abe3ab6a8eb778dfaa144a82f52f2f0c75 Mon Sep 17 00:00:00 2001 From: dslarm <38504854+dslarm@users.noreply.github.com> Date: Thu, 12 Dec 2024 07:47:46 +0000 Subject: [PATCH] Update CMakeLists.txt to put project declaration first Fixes #49. --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2721676..79f63ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,5 @@ +project(pufferfish LANGUAGES CXX C) + cmake_minimum_required(VERSION 3.15) #cmake_policy(SET CMP0069 NEW) @@ -24,7 +26,6 @@ if(NOT DEFINED USE_ARM) endif() endif() -project(pufferfish LANGUAGES CXX C) include(ExternalProject)