Stefan Schimanski <[EMAIL PROTECTED]> writes: > Wl,CoreFoundation -laspell -liconv -lz -framework Carbon -framework > AppKit -framework ApplicationServices -lQtGui -lQtCore -lz -lm > libtool: link: cannot find the library `' > > I remember that I also get this before switching to CMake. Any idea > how to fix that? I think I read somewhere that it is a libtool problem > which does not understand the -framework.
It is indeed a problem with libtool versus frameworks :( A solution is to pass pass the option directtly to the linker like "-Xlinker -framework -Xlinker ApplicationServices". This way, libtool will not touch the argument. JMarc