On Thursday 07 February 2008, Sylvain Jaume wrote: > Hi, > > I have these directories: > > Foo > Foo/Bar > > I need to link Foo.dll to Bar.dll > In the CmakeLists.txt in Foo, I wrote: > > SUBDIRS(Bar)
Use ADD_SUBDIRECTORY() instead pof SUBDIRS(), this will be processed in order (and not at the end of the directory), so BarLib will be known when it comes to FooLib. BYe Alex _______________________________________________ CMake mailing list [email protected] http://www.cmake.org/mailman/listinfo/cmake
