I am running into an issue that causing me a bit of trouble:<div>file(GLOB globOutput test)</div><div>returns the absolute path to test (assuming there is a test directory under my current dir). Whereas</div><div>file(GLOB globOutput .)</div>
<div>returns an empty string. This is particularly annoying because </div><div>file(GLOB globOutput non-existant-dir)</div><div>also returns an empty string. </div><div><br></div><div>And the follow on to this is that the documentation for IS_DIRECTORY, EXISTS, ... says:</div>
<div><div> Behavior is well-defined only for full paths.</div></div><div>What exactly does that mean? Just to clarify, is a "full path" an absolute path (e.g. as determined by IS_ABSOLUTE)? The only way I have found to get an absolute path is to use file(GLOB which works for anything other than .</div>
<div><br></div><div>Kevin Fitch</div>