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 - ) -