From e219be29dcd2d651bb3916f4461cc31d5dcf84b8 Mon Sep 17 00:00:00 2001 From: Ben Webb <ben@salilab.org> Date: Mon, 21 Oct 2019 09:04:40 -0700 Subject: [PATCH] Add a project name to make modern CMake happy --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a081d39..941cb72 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,7 @@ # Are we running cmake from this directory (out of tree build) ? if(CMAKE_SOURCE_DIR STREQUAL CMAKE_CURRENT_SOURCE_DIR) cmake_minimum_required(VERSION 2.8.3) + project(imp_module) if(POLICY CMP0058) cmake_policy(SET CMP0058 NEW) -- GitLab