RE: [CMake] Re: [Insight-users] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread WangPing
I run this on the local linux disk, it should be linux format (not fat format), I do not know how to deal with the problem. Date: Fri, 7 Dec 2007 15:27:56 -0700 From: [EMAIL PROTECTED] Subject: Re: [CMake] Re: [Insight-users] question about clock skew detected. Your build may be incomplete

[CMake] RE: [Insight-users] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread WangPing
I used date to check the time of the linux machine, the date and time is correct. I still do not understand why I got this message. Date: Fri, 7 Dec 2007 17:24:50 -0500From: [EMAIL PROTECTED]: [EMAIL PROTECTED]: Re: [Insight-users] question about clock skew detected. Your build may be

[CMake] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread WangPing
Dear cmake experts: I am a new user for ITK and cmake. Today I downloaded ITK and cmake and followed the instruction to build ITK, when I finannly run 'make', it always gave many warning message as below: clock skew detected. Your build may be incomplete I do not know if my ITK will have

Re: [CMake] Generating makefile from Visual Studio Project (Migrating to Eclipse)

2007-12-07 Thread Olumide
Olumide wrote: Olumide wrote: The directory C:\Work\Demo\TestTexturePlugin\CMakeFiles now contains, among other files, Makefile2, which I assume is the NMake Makefile, and Makefile.cmake. Where can I find more information about these files. I'm not sure which files I need to perform the

RE: [CMake] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread Alan W. Irwin
On 2007-12-08 10:14+0800 WangPing wrote: The date /time on my local workstation is correct, probably due to NFS system, the work directory is a NFS folder on other server, maybe the date/time on this server is incorrect? I can check it later. Inconsistent dates/times between NFS server and

Re: [CMake] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread Alan W. Irwin
On 2007-12-08 06:16+0800 WangPing wrote: Dear cmake experts: I am a new user for ITK and cmake. Today I downloaded ITK and cmake and followed the instruction to build ITK, when I finannly run 'make', it always gave many warning message as below: clock skew detected. Your build may be

Re: [CMake] function and raise_scope commands

2007-12-07 Thread Filipe Sousa
Miguel A. Figueroa-Villanueva wrote: On Dec 7, 2007 6:42 PM, Filipe Sousa wrote: Try the following: function(foo x) set(${x} 1) # changed here raise_scope(${x}) endfunction() foo(y) message(STATUS y=${y}) I have this working. What gives me problems is

Re: [CMake] function and raise_scope commands

2007-12-07 Thread Filipe Sousa
Ken Martin wrote: I checked into CVS two new commands; function and raise_scope (well three commands if you count endfunction) I'm having troubles with functions, the next example gives me an exception function(foo x) set(x 1) raise_scope(${x}) endfunction() foo(y) message(STATUS y=${y})

Re: [CMake] Re: [Insight-users] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread James Bigler
I've also seen this using a local disk (so the system time should be consistent) for my own (not ITK) projects. It may be the file system type, because I've mostly seen it using cygwin on a fat32 file system. James Karthik Krishnan wrote: Your system time is probably incorrect. One possible

[CMake] Re: [Insight-users] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread Karthik Krishnan
Your system time is probably incorrect. One possible reason is that the timestamp of the files that make is compiling is newer than the current time. Hello world programs (as the name suggest) are simply meant to display Hello world.. as a warm welcome :) (

RE: [CMake] question about clock skew detected. Your build may be incomplete

2007-12-07 Thread WangPing
The date /time on my local workstation is correct, probably due to NFS system, the work directory is a NFS folder on other server, maybe the date/time on this server is incorrect? I can check it later. Date: Fri, 7 Dec 2007 18:11:38 -0800 From: [EMAIL PROTECTED] Subject: Re: [CMake] question

Re: [CMake] function and raise_scope commands

2007-12-07 Thread Miguel A. Figueroa-Villanueva
On Dec 7, 2007 6:42 PM, Filipe Sousa wrote: Ken Martin wrote: I checked into CVS two new commands; function and raise_scope (well three commands if you count endfunction) I'm having troubles with functions, the next example gives me an exception function(foo x) set(x 1)