On Thu, Apr 9, 2009 at 6:56 PM, Robert Dailey <rcdai...@gmail.com> wrote:

> I want to set a couple of custom directories of mine to be searched for
> cmake modules when I use include( foo.cmake ). However, I can't seem to get
> this to work. My code is basically:
> set( CMAKE_MODULE_PATH "{CMAKE_SOURCE_DIR}/cmake" )
>

If this is a verbatim copy of the code you're using, you missed a "$", it
should read

 set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake" )


> include( foo.cmake )
>
> This, however, does not work. It says it cannot load the file. Am I doing
> this wrong? Keep in mind that I really want to PREPEND to the
> CMAKE_MODULE_PATH variable, as I only want my custom directories to be
> searched *first*, but I do not want to override the default search path for
> include modules. How can I do this?
>
> _______________________________________________
> Powered by www.kitware.com
>
> Visit other Kitware open-source projects at
> http://www.kitware.com/opensource/opensource.html
>
> Please keep messages on-topic and check the CMake FAQ at:
> http://www.cmake.org/Wiki/CMake_FAQ
>
> Follow this link to subscribe/unsubscribe:
> http://www.cmake.org/mailman/listinfo/cmake
>



-- 
Adolfo Rodríguez Tsouroukdissian

Robotics engineer
PAL ROBOTICS S.L
http://www.pal-robotics.com
Tel. +34.93.414.53.47
Fax.+34.93.209.11.09
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to