michael kapelko wrote:
I tried to change cmGlobalMSYSGenerator and to use "MinGW Makefiles" in MSYS the way you suggested. Nothing helped.

Well, you have hit a hard limit for the command line on windows... You are going to have to break your code down into smaller bits...

One hack I can think of that might work is to use #include to consolidate some of the .c files.


BigFile.c

#include "file1.c"
#include "file2.c"
....
#include "fileN.c"


-Bill


_______________________________________________
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