Re: [CMake] Customize dependencies scanned by CMake

2011-01-17 Thread David Cole
See this command: http://cmake.org/cmake/help/cmake-2-8-docs.html#command:include_regular_expression If you can match many of the header files that rarely, if ever, change with a regular expression based on directory and file name patterns, then you can reduce the number of entries in the

Re: [CMake] Customize dependencies scanned by CMake

2011-01-17 Thread Alexey Livshits
It looks that precompiled headers should help here. 2011/1/17 David Cole david.c...@kitware.com: See this command: http://cmake.org/cmake/help/cmake-2-8-docs.html#command:include_regular_expression If you can match many of the header files that rarely, if ever, change with a regular

Re: [CMake] Customize dependencies scanned by CMake

2011-01-17 Thread Dieter Oberkofler
Thanks' a lot! From: David Cole [mailto:david.c...@kitware.com] Sent: Monday, January 17, 2011 16:40 To: Dieter Oberkofler Cc: CMake@cmake.org Subject: Re: [CMake] Customize dependencies scanned by CMake See this command: http://cmake.org/cmake/help/cmake-2-8-docs.html

[CMake] Customize dependencies scanned by CMake

2011-01-15 Thread Dieter Oberkofler
I'm using CMake 2.8.3 using makefiles for the OSX and Windows platform. I very much like CMake but unfortunately the build performance consistently causes some problems. And the main performance problem is the absolutely correct but painfully slow dependency checking. In a large (Qt/C++) project