From 8b4b74e54afa542c503bf9bc384e7a45ab1e16e3 Mon Sep 17 00:00:00 2001 From: Jon Siwek Date: Mon, 28 Oct 2019 17:59:21 -0700 Subject: [PATCH] binpac: Move CMake project() after cmake_minimum_required() --- tools/binpac/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/binpac/CMakeLists.txt b/tools/binpac/CMakeLists.txt index 7ededcf5fc..46f70a27ac 100644 --- a/tools/binpac/CMakeLists.txt +++ b/tools/binpac/CMakeLists.txt @@ -1,5 +1,5 @@ -project(BinPAC C CXX) cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) +project(BinPAC C CXX) include(cmake/CommonCMakeConfig.cmake) file(STRINGS "${CMAKE_CURRENT_SOURCE_DIR}/VERSION" BINPAC_VERSION LIMIT_COUNT 1)