2009/11/5  <btho...@nexus.hu>:
> Dear All,
>
> I am managing a CFD code where wish to set the CMAKE_C_COMPILER and 
> CMAKE_CXX_COMPILER to openmpi
> wrappers.
>
> So far i was using cmake 2.4.7 and in the CMakeLists.txt the following lines 
> were working perfectly:
> SET(CMAKE_C_COMPILER ${MPI_INSTALL_ROOT}/bin/mpicc )
> SET(CMAKE_CXX_COMPILER ${MPI_INSTALL_ROOT}/bin/mpic++ )

You usually should not do it that way but let CMake discover them, from
a typical command line:

CC=/path/to/mpicc CXX=/path/to/mpic++ cmake /to/build/tree

see:
http://www.cmake.org/Wiki/CMake_Useful_Variables#Compilers_and_Tools
-- 
Erk
Membre de l'April - « promouvoir et défendre le logiciel libre » -
http://www.april.org
_______________________________________________
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