From 809885ea7dc239f59bb396adc4f1646177fd6052 Mon Sep 17 00:00:00 2001 From: Rich Wareham Date: Mon, 24 Feb 2014 20:54:45 +0000 Subject: add custom CMake module path --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index f0a04efe23..ae3a891553 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,9 @@ cmake_minimum_required (VERSION 2.6) project (NEOVIM) +# Point CMake at any custom modules we may ship +set(CMAKE_MODULE_PATH "${PROJECT_SOURCE_DIR}/cmake") + set(NEOVIM_VERSION_MAJOR 0) set(NEOVIM_VERSION_MINOR 0) set(NEOVIM_VERSION_PATCH 0) -- cgit