Re: [CMake] VC8 projects generated multiple times

2006-06-14 Thread Laurentiu Nicolae
Hi all, I changed the GenerateProject macro to cache my file lists. In this way I'm only globbing once. I included the changed macro below, maybe someone will find it useful. We gained about 20% using the caches, which makes it worthwile. I somehow expected more. CMake takes some time to analyze

Re: [CMake] VC8 projects generated multiple times

2006-06-08 Thread Laurentiu Nicolae
Hi Bill, David, By changing workspaces I mean that files tend to be added, deleted or moved quite often during development. We are a VS-only house (at the moment), and this is THE reason why we want to generate our workspaces. A normal use scenario: developer A adds 20 files, moves another 15

Re: [CMake] VC8 projects generated multiple times

2006-06-07 Thread David Cole
Could you send a small example CMakeLists.txt that just processes a directory twice where you only expect it to process it once...? Perhaps then somebody will be able to make a suggestion on how to fix it... Thanks, David Laurentiu Nicolae wrote: Hi all, I am trying to generate VC8

Re: [CMake] VC8 projects generated multiple times

2006-06-07 Thread William A. Hoffman
At 12:35 PM 6/7/2006, Laurentiu Nicolae wrote: It must be said that I generate the list of files in the projects with GLOB_RECURSIVE. That might have something to do with it. Not using this is out of the question - we adopted CMake to be able to regenerate changing workspaces as a prime