From cb01d04f58eeda2251273ad7064ed0e4507ea53c Mon Sep 17 00:00:00 2001 From: Niels Dekker Date: Mon, 17 Oct 2022 21:48:55 +0200 Subject: [PATCH] STYLE: Rename CMake ITKElastix project "Elastix" to "ITKElastix" Aims to avoid confusion between the elastix project and the ITKElastix project. No longer `include(ITKModuleExternal)` --- CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 95b0a6b6..0139b5cb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.16.3) -project(Elastix) +project(ITKElastix) # To ease enablement with Python packaging if(DEFINED ENV{ELASTIX_USE_OPENCL}) @@ -96,7 +96,6 @@ endif() if(NOT ITK_SOURCE_DIR) find_package(ITK REQUIRED) list(APPEND CMAKE_MODULE_PATH ${ITK_CMAKE_DIR}) - include(ITKModuleExternal) else() set(ITK_DIR ${CMAKE_BINARY_DIR}) itk_module_impl()