Re: [CMake] fun with Boost - swap absolute library path for -L and -l?

2010-11-11 Thread Adam J Richardson
On Thu, 11 Nov 2010 07:07:48 -0500 cmake-requ...@cmake.org wrote: Any help is greatly appreciated! I'd help if I could. Unfortunately I'm still stuck on this. Usually I can work around a problem given enough time, but this is a real stumper. Actually I do have a suggestion (see below) but it's

Re: [CMake] fun with Boost - swap absolute library path for -L and -l?

2010-11-11 Thread Adam J Richardson
On Thu, 11 Nov 2010 07:07:48 -0500 cmake-requ...@cmake.org wrote: Any help is greatly appreciated! I'd help if I could. Unfortunately I'm still stuck on this. Usually I can work around a problem given enough time, but this is a real stumper. Actually I do have a suggestion (see below)

Re: [CMake] fun with Boost - swap absolute library path for -L and -l?

2010-11-10 Thread David M . Lee
Adam J Richardson fat...@... writes: (That is, if I manually separate C:\Compilers\Libs\libboost_thread-mgw44-mt-1_44.a into -LC:\Compilers\Libs -lboost_thread-mgw44-mt-1_44.) Is there a way to have CMake do this by itself and not use absolute paths? I've tried setting CMP0003 to OLD but it

[CMake] fun with Boost - swap absolute library path for -L and -l?

2010-11-01 Thread Adam J Richardson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi list, I'm having some fun making link errors with the help of Boost on Win32. With a main.cc of: #include boost/thread.hpp int main(int, char **) { boost::thread t; return 0; } and a CMakeLists.txt of: cmake_minimum_required(VERSION