Re: [CMake] what options

2015-12-14 Thread Owen Hogarth II
Thanks for the clarification. On Mon, Dec 14, 2015, 16:23 Attila Krasznahorkay < attila.krasznahor...@gmail.com> wrote: > Hi, > > Just to clarify: CMAKE_INSTALL_PREFIX is the variable that sets where the > project will be installed. CMAKE_PREFIX_PATH is used (amongst other things) > to find exter

Re: [CMake] what options

2015-12-14 Thread Attila Krasznahorkay
Hi, Just to clarify: CMAKE_INSTALL_PREFIX is the variable that sets where the project will be installed. CMAKE_PREFIX_PATH is used (amongst other things) to find external projects during the configuration. Cheers, Attila > On 13 Dec 2015, at 21:20, Owen Hogarth II wrote: > > wow

Re: [CMake] what options

2015-12-13 Thread Owen Hogarth II
wow, that's excellent cmake -LAH lead me to the variable that I was looking for. Thank you very much Roger! On Mon, Dec 14, 2015 at 3:56 AM, Roger Leigh wrote: > On 13/12/2015 19:44, Owen Hogarth II wrote: > >> If you have a cmake project, what's the way to see what type of >> configuration opt

Re: [CMake] what options

2015-12-13 Thread Roger Leigh
On 13/12/2015 19:44, Owen Hogarth II wrote: If you have a cmake project, what's the way to see what type of configuration options are available? For example I know that I can pass -DCMAKE_PREFIX_PATH the set where the project will be installed. Sometimes project creators add other things, such

[CMake] what options

2015-12-13 Thread Owen Hogarth II
If you have a cmake project, what's the way to see what type of configuration options are available? For example I know that I can pass -DCMAKE_PREFIX_PATH the set where the project will be installed. Sometimes project creators add other things, such as building static or share libraries, SSE, NE