Re: [CMake] CMake rebuilds every time

2012-11-07 Thread Arindam Mukherjee
On Thu, Oct 25, 2012 at 6:02 PM, Arindam Mukherjee wrote: > On Mon, Oct 22, 2012 at 5:55 PM, David Cole wrote: >> On Mon, Oct 22, 2012 at 6:38 AM, Arindam Mukherjee >> wrote: >>> On Mon, Oct 22, 2012 at 4:06 PM, Arindam Mukherjee >>> wrote: I am sorry I missed your response. Here are the d

Re: [CMake] CMake rebuilds every time

2012-10-25 Thread Arindam Mukherjee
On Mon, Oct 22, 2012 at 5:55 PM, David Cole wrote: > On Mon, Oct 22, 2012 at 6:38 AM, Arindam Mukherjee > wrote: >> On Mon, Oct 22, 2012 at 4:06 PM, Arindam Mukherjee >> wrote: >>> I am sorry I missed your response. Here are the details: >>> >>> 1. I have a shell / batch script which does two th

Re: [CMake] CMake rebuilds every time

2012-10-22 Thread David Cole
On Mon, Oct 22, 2012 at 6:38 AM, Arindam Mukherjee wrote: > On Mon, Oct 22, 2012 at 4:06 PM, Arindam Mukherjee > wrote: >> I am sorry I missed your response. Here are the details: >> >> 1. I have a shell / batch script which does two things: >> a. cd build_dir && cmake $SRC_PATH >> b. mak

Re: [CMake] CMake rebuilds every time

2012-10-22 Thread Arindam Mukherjee
On Mon, Oct 22, 2012 at 4:06 PM, Arindam Mukherjee wrote: > I am sorry I missed your response. Here are the details: > > 1. I have a shell / batch script which does two things: > a. cd build_dir && cmake $SRC_PATH > b. make # On Unix > > On Windows, for step b., we run > devenv p

Re: [CMake] CMake rebuilds every time

2012-10-22 Thread Arindam Mukherjee
I am sorry I missed your response. Here are the details: 1. I have a shell / batch script which does two things: a. cd build_dir && cmake $SRC_PATH b. make # On Unix On Windows, for step b., we run devenv proj.sln /Build "Release|x86" /out Here is the top level CMakeLists.txt:

Re: [CMake] CMake rebuilds every time

2012-10-16 Thread David Cole
What does your CMakeLists look like? Only the necessary rebuild steps should be taken on an incremental build. How do you invoke a rebuild? (Just typing 'make' or some other mechanism?) On Mon, Oct 15, 2012 at 6:22 AM, Arindam Mukherjee wrote: > Hi, > > I have a cross-platform build setup usin