[CMake] cmake script profiler

2013-04-23 Thread Volo Zyko
Hi all, We have a rather big project and use cmake for building it. At some point our cmake scripts became very slow (around 4 minutes for single cmake run). We are thinking now how to speed up it. Searching the web and this list didn't give any results. It looks like there is no such thing as

Re: [CMake] cmake script profiler

2013-04-23 Thread Volo Zyko
service. No matter whether my patch for cmake will be accepted or not the script might be useful for other people. -- Volo Zyko -- 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

Re: [CMake] cmake script profiler

2013-04-24 Thread Volo Zyko
in a workspace which is too much for Visual Studio. :( -- Volo Zyko On Wed, Apr 24, 2013 at 12:37 PM, Gregoire Aujay gau...@movea.com wrote: Hello, ** ** Are you using cmake with a Makefiles generator on Windows ? ** ** From my experiments here are my observations

Re: [CMake] cmake script profiler

2013-04-24 Thread Volo Zyko
details. Sorry. -- Volo Zyko On Wed, Apr 24, 2013 at 10:14 PM, Bill Hoffman bill.hoff...@kitware.comwrote: On 4/24/2013 3:07 PM, Volo Zyko wrote: Hi, We use Makefiles on Linux and MacOS. Windows is not our target platform. From what we see Linux is the fastest. We made few attempts of building

Re: [CMake] cmake script profiler

2013-04-24 Thread Volo Zyko
Hi Jean-Christophe, Thanks for the suggestion. We'll definitely consider it. -- Volo Zyko On Thu, Apr 25, 2013 at 12:23 AM, Jean-Christophe Fillion-Robin jchris.filli...@kitware.com wrote: Hi Volo, If you are doing some topological sorting to build your library/executable in the right

[CMake] Inconsistent parsing of bracket comments in command arguments

2017-04-28 Thread Volo Zyko
? As for me either separation should be required on both sides of bracket comment or it should allow to omit separation on both sides too. Volo Zyko -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers

[CMake] Inconsistent parsing of bracket comments in command arguments

2017-05-04 Thread Volo Zyko
? As for me either separation should be required on both sides of bracket comment or it should allow to omit separation on both sides too. Volo Zyko -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers

[CMake] Problem with removing directories containing soft links on MSYS

2017-12-07 Thread Volo Zyko
/cmake". It looks like cmake first removes "$test_dir/1" and then cannot remove dangling "$test_dir/a". Is this something known? Volo Zyko -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

Re: [CMake] Problem with removing directories containing soft links on MSYS

2017-12-07 Thread Volo Zyko
Additionally investigated that the following also fails: $> test_dir=$PWD/cmake $> mkdir -p $test_dir/z $> ln -s $test_dir/z/ $test_dir/a $> cmake -E remove_directory $test_dir In this case $test_dir/z is not removed at all. Also, I checked cmake 3.5.1 and 3.9.2. Volo Zyko O