[Cmake] cmake and condor.

Brad King brad . king at kitware . com
Thu, 4 Dec 2003 13:01:54 -0500 (EST)


On Wed, 3 Dec 2003, Dimitrios Perperidis wrote:

> I am trying to compile my code using condor. Does anyone know how can I
> change the default linker used by cmake? Condor comes with its own
> linker.

Shared libraries and executables are always linked by using the compiler
to call the linker.  Static libraries on UNIX are created using the
programs specified by CMAKE_AR and CMAKE_RANLIB.  See
CMakeDefaultMakeRuleVariables.cmake in the Modules directory of your cmake
installation.

-Brad