↧
Answer by John Anderson for How do I check whether I'm using two different...
I have a small tool to find all executables of a given name in my path. You can use this to see if there is more than one cmake in your path. The simple code is:#!/usr/bin/tcshforeach dir ($path) if...
View ArticleAnswer by Katu for How do I check whether I'm using two different version of...
cmake --debug-outputWill show you where is the cmake that it's using.
View ArticleHow do I check whether I'm using two different version of cmake?
I've been having some problems with Qt not being able to use the newest version of cmake. I recently upgraded the version using apt-getcmake --versioncmake version 3.2.2But Qt somehow still uses 2.8,...
View Article