From 371d647202eb804ecae954ec4dc2cf59c9036730 Mon Sep 17 00:00:00 2001 From: Gabriel Studer <gabriel.studer@unibas.ch> Date: Mon, 9 Nov 2020 10:39:25 +0100 Subject: [PATCH] silence CMake warnings --- CMakeLists.txt | 4 ++-- cmake_support/{FindEigen.cmake => FindEIGEN.cmake} | 0 cmake_support/{FindSQLite3.cmake => FindSQLITE3.cmake} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename cmake_support/{FindEigen.cmake => FindEIGEN.cmake} (100%) rename cmake_support/{FindSQLite3.cmake => FindSQLITE3.cmake} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6c086677e..8809e1176 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -235,8 +235,8 @@ else() set (PNG_LIBRARY "") endif() -find_package(Eigen 3.2.0 REQUIRED) -find_package(SQLite3 3.7.13 REQUIRED) +find_package(EIGEN 3.2.0 REQUIRED) +find_package(SQLITE3 3.7.13 REQUIRED) if(USE_NUMPY) find_package(Numpy REQUIRED) diff --git a/cmake_support/FindEigen.cmake b/cmake_support/FindEIGEN.cmake similarity index 100% rename from cmake_support/FindEigen.cmake rename to cmake_support/FindEIGEN.cmake diff --git a/cmake_support/FindSQLite3.cmake b/cmake_support/FindSQLITE3.cmake similarity index 100% rename from cmake_support/FindSQLite3.cmake rename to cmake_support/FindSQLITE3.cmake -- GitLab