From 81b23aff92e7bb0f978aaedb8efa6a8f354bf0d3 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Mon, 28 Oct 2019 17:58:16 -0700 Subject: [PATCH] bifcl: Move CMake project() after cmake_minimum_required() --- tools/bifcl/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/bifcl/CMakeLists.txt b/tools/bifcl/CMakeLists.txt index e111d5454d..114b78a74c 100644 --- a/tools/bifcl/CMakeLists.txt +++ b/tools/bifcl/CMakeLists.txt @@ -1,6 +1,6 @@ -project(BifCl C CXX) cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) +project(BifCl C CXX) include(cmake/CommonCMakeConfig.cmake)