Re: [CMake] unit tests include in "all" but not install

2015-03-21 Thread Scott Aron Bloom
And here is the ironic part.. Make test, does NOT have a dependency to build all the tests... YET, make install does :( Personally, I want it the other way around, where make test, at least has each tests executable as a dependency, and makes sure they are not out of date before run... But ma

Re: [CMake] unit tests include in "all" but not install

2015-03-21 Thread Scott Aron Bloom
I run make test separately .. I just don't want it to go through the dependency check for thr 600 unit tests.. --Scott Original message From: David Cole Date:03/21/2015 04:19 (GMT-08:00) To: Nils Gladitz Cc: Scott Aron Bloom , CMake ML Subject: Re: [CMake] unit tests incl

Re: [CMake] unit tests include in "all" but not install

2015-03-21 Thread David Cole via CMake
"In general, I want all my unit tests to be built when I do a make all, but I really don’t care if they are up to date for a make install." Are you sure you don't care? If your unit tests are out-of-date with respect to what you are installing, and you have not run them against what you are instal

Re: [CMake] unit tests include in "all" but not install

2015-03-21 Thread Nils Gladitz
On 21.03.2015 00:23, Scott Aron Bloom wrote: For those who couldn’t understand my jibberish.. I apologize, never send email from a phone… Ill restate… In general, I want all my unit tests to be built when I do a make all, but I really don’t care if they are up to date for a make install.