From 3e05644f51126f37528293572c7e2e115beb8320 Mon Sep 17 00:00:00 2001 From: Dibyendu Majumdar Date: Sun, 3 Jan 2021 01:46:24 +0000 Subject: [PATCH] issue #198 Cleanup --- CMakeLists.txt | 2 -- cmake/FindRaviComp.cmake | 15 --------------- 2 files changed, 17 deletions(-) delete mode 100644 cmake/FindRaviComp.cmake diff --git a/CMakeLists.txt b/CMakeLists.txt index 8cf109d..83b51d4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,8 +11,6 @@ option(LTESTS "Controls whether ltests are enabled in Debug mode; note requires option(ASAN "Controls whether address sanitizer should be enabled" OFF) option(RAVICOMP "Controls whether to link in RaviComp" ON) -set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake") - # By we enable MIR JIT if (NOT NO_JIT) set(MIR_JIT ON) diff --git a/cmake/FindRaviComp.cmake b/cmake/FindRaviComp.cmake deleted file mode 100644 index 3a4d6da..0000000 --- a/cmake/FindRaviComp.cmake +++ /dev/null @@ -1,15 +0,0 @@ -find_path(RAVICOMP_INCLUDE_DIRS ravi_compiler.h - PATHS - c:/Software/ravicomp/include/ravicomp - ~/Software/ravicomp/include/ravicomp - NO_DEFAULT_PATH - ) - -find_library(RAVICOMP_LIBRARIES - NAMES ravicomp - PATHS - c:/Software/ravicomp/lib - ~/Software/ravicomp/lib - ~/Software/ravicomp/lib64 - ) -