Hello all,<br><br>I have a quick question regarding cmake modules.<br><br>I have a shared library that I managed to compile and install using cmake. This is working great but now I want to use this library in another cmake-based development. Normally, as with any other shared library, I use a FindPackage to get the include and linker flags. However, since I am using my shared library, I wrote a cmake module. Once again this is working ok and I would like to include this module as a part of the files installed by the library. So the question is:<br>
where can I install the module?<br><br>For the moment, I installed it at a directory called cmake, which then installs it at /usr/local/cmake... however, this forces me to do cmake -DCMAKE_MODULE_PATH=/usr/local/cmake ../<br>
The thing is that i would like to avoid this since it would be easier for the people that will use the library to do: cmake ../<br><br>Thanks for your time<br>David<br>