[CMake] Forcing finding FreeGLUT instead of the system GLUT on MacOS

2019-05-02 Thread ardi
alled it). Now I'm trying to build a project that has find_package(GLUT REQUIRED) and, as I would expect, it detects the system GLUT that comes standard with MacOS. But for this particular build, I want it to find FreeGLUT instead of the system GLUT. How can I force finding FreeGLUT? Thanks a l

Re: [CMake] Querying project dependencies from the UNIX command-line

2018-07-20 Thread ardi
On Wed, Jul 18, 2018 at 10:04 PM, Johannes Zarl-Zierl wrote: > Hi Ardi, > > Am Mittwoch, 18. Juli 2018, 11:31:50 CEST schrieb ardi: >> For example, I'd like to type "somecommand /path/to/someproject" at >> the UNIX command line, and get this output: >>

[CMake] Querying project dependencies from the UNIX command-line

2018-07-18 Thread ardi
ke/CPack ? Or would I need additional tools (Note: I know about Hunter, but first I'd like to know if plain CMake does already offer this feature). Thanks! ardi -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ

Re: [CMake] Managing a local installation of cmake-built open source packages

2017-01-19 Thread ardi
Typo in my last message: All occurrences of CMAKE_INSTALL_PREFIX were meant to be CMAKE_PREFIX_PATH instead. On Thu, Jan 19, 2017 at 2:57 PM, ardi wrote: > Thanks a lot, Elisabeth, Domen, Guillaume, and Konstantin, > > I believe spack is the closest to what I need. However,

Re: [CMake] Managing a local installation of cmake-built open source packages

2017-01-19 Thread ardi
nd projects- would be reusable without modification). Thanks a lot for all your ideas!! On Thu, Jan 19, 2017 at 12:25 AM, Elizabeth A. Fischer wrote: > Ardi, > > What you describe is pretty much what Spack does. I would take a look at > it, see if it meets your needs. Chances are

[CMake] Managing a local installation of cmake-built open source packages

2017-01-18 Thread ardi
; dumont.guilla...@gmail.com > wrote: > You can have a look at: > > Hunter: https://github.com/ruslo/hunter > Conan: https://conan.io/ > > HTH > > Guillaume > > > On Wed, Jan 18, 2017 at 1:47 PM, Konstantin Podsvirov > > wrote: >> >> 18.01.2017, 21:32

Re: [CMake] Managing a local installation of cmake-built open source packages

2017-01-18 Thread ardi
On Wed, Jan 18, 2017 at 7:19 PM, Konstantin Podsvirov wrote: > Hello Ardi! > [...] > > Sounds like, you need cross-platform (several desktops) package manager > compatible with cmake. > > If all desktops with GUI, what about using CPack IFW generator? > > https://

[CMake] Managing a local installation of cmake-built open source packages

2017-01-18 Thread ardi
Hi, I want to install (on UNIX-like systems) a collection of open source packages which use cmake as the build tool, but I need the installation to be performed in a local directory (inside my home directory), and I wish convenient updating to new versions of the packages. I didn't arrive to a co