[CMake] linker parameters for VS2005

2006-12-15 Thread Yianis Nikolaou
hi all, I would like to exclude some libraries from my project The command SET(CMAKE_EXE_LINKER_FLAGS /NODEFAULTLIB:LIBC;LIBCMT;MSVCRT) used to work for VS6 but it does not for VS2005 When the project is created this parameter is included in the [Command Line] section of the Project's Linker

Re: [CMake] linker parameters for VS2005

2006-12-15 Thread Sylvain Benner
This kind of option is not fully supported by CMake. Although it still works because it is placed in the command line. To handle this kind of flags, I attached several files. The flags must be declared like this in the array cmVS7FlagTable cmLocalVisualStudio7GeneratorLinkerFlagTable[] //

Re: [CMake] linker parameters for VS2005

2006-12-15 Thread Yianis Nikolaou
thank you very much! I guess there is no other way but to recompile CMake, right? ___ CMake mailing list CMake@cmake.org http://www.cmake.org/mailman/listinfo/cmake

Re: [CMake] linker parameters for VS2005

2006-12-15 Thread Sylvain Benner
Yianis Nikolaou a écrit : thank you very much! I guess there is no other way but to recompile CMake, right? To have this kind of flags listed in the correct row of the project properties panel, there is no other way but to patch the function and to recompile CMake. ___