Re: [CMake] How do I search for personal libraries?

2013-04-03 Thread Michael Wild
You should find this interesting: http://www.cmake.org/Wiki/CMake/Tutorials/How_to_create_a_ProjectConfig.cmake_file In short: * In project A create a AConfig.cmake file and export your targets * In project B call find_package(A REQUIRED) HTH Michael On Wed, Apr 3, 2013 at 7:44 AM, Saad

Re: [CMake] How do I search for personal libraries?

2013-04-03 Thread Saad Khattak
Thanks Michael. The link is very helpful (although very hard to digest [probably because I am new to CMake] - I have gone over it multiple times now and don't fully understand everything). I will experiment with those commands in my projects. - Saad On Wed, Apr 3, 2013 at 2:52 AM, Michael Wild

[CMake] How do I search for personal libraries?

2013-04-02 Thread Saad Khattak
Hi, Suppose I have two personal repositories: A and B. Repository B has a dependency on repository A i.e. repository A builds multiple libraries and repository B builds multiple libraries and executables. I can build 32-bit and 64-bit libraries/executables for both by having a 'build' and