[Insight-developers] CMake and external toolkits
Luis Ibanez
ibanez@choroid.cs.unc.edu
Fri, 6 Apr 2001 11:26:39 -0400 (EDT)
Bill,
I added the FIND_INCLUDE and FIND_LIBRARY lines,
but now I'm getting a CMake error message when
running CMakeSetup. The message says : "CMake Error:".
Should I do something else before running CMakeSetup ?
BTW: I removed the lines I was adding to CMakeCache.txt.
The CMakeList file is commited in Unsupported/FltkImageViewer
if you want to take a look at it, maybe I'm not following the
right syntax.
Thanks
Luis
--------------
On Fri, 6 Apr 2001, Bill Hoffman wrote:
> You want to use these cmake commands:
> cmFindIncludeCommand
> cmFindLibraryCommand
>
> In your cmakelists file add these:
>
> FIND_INCLUDE( FLTK_INCLUDE path1 path2 )
> FIND_LIBRARY( FLTK_LIBRARY try1 try2 )
>
> Then use FLTK_INCLUDE and FLTK_LIBRARY as a variables in the cmakelists file.
> They will be put into the cache file automatically for you.
>