Re: [CMake] HP NonStop porting issues?

2009-11-18 Thread Lucas Thode
On Wed, Nov 18, 2009 at 8:40 PM, Bill Hoffman wrote: > Eric M. LaFranchi wrote: > >> >> Unable to find a cmake port for the HP-NonStop platform, I am working >> though the details of porting using cmake-2.8.0 source. >> >> What is HP-NonStop? Having worked with the platform a bit, I'll give you

[CMake] Hinting find_library using other libraries + VS path truncation issues

2009-11-17 Thread Lucas Thode
1) Is there some sort of rather low upper limit on the length of the per-project header search path, either in the CMake VS generator or in VS? Test CMakeLists.txt: begin file PROJECT(test CXX) INCLUDE_DIRECTORIES(C:\Windows\System32 C:\Windows\System32\Wbem C:\Documents and Settings\All U

[CMake] FindXXX.cmake...or finding stuff semi-reliably on Windows

2009-11-04 Thread Lucas Thode
N00by question: How do you make a FindXXX.cmake file that can find XXX even semi-reliably on Windows? I wrote a bunch of 'em which work just fine on Linux, but don't seem to work so well on Windows boxes... --Lucas ___ Powered by www.kitware.com Visit

Re: [CMake] xcode gcc version

2009-10-14 Thread Lucas Thode
On Wed, Oct 14, 2009 at 11:31 AM, Clinton Stimpson wrote: > > I've found there's an xcode setting for this, but CMake doesn't put it in > the > generated xcode project. > There's already a thing in the bug tracker for this. > That would be ideal, instead of a method that requires root access and >

[CMake] Conditional compilation of entire files

2009-07-05 Thread Lucas Thode
Hello CMake folks, I have a source file in my project that needs to be compiled into my project if and only if a certain configuration cache variable is set. How do I go about doing that, as it doesn't seem that you can append files to an add_library() statement once you've closed it already? T