Re: [CMake] CMake and CURL

2013-06-22 Thread Shlomi Fish
try debugging it by using MESSAGE(...)s, strace/etc. > > I have on my system curl, libcurl3, libcurl3-gnutls and > libcurl4-openssl-dev. Do you have libcurl4-dev? Regards, Shlomi Fish > > Should I modify the auto-generated file FindCURL.cmake, to give him the > way man

Re: [CMake] Bootstrapping CMake

2013-06-06 Thread Shlomi Fish
to ship a (subset?) of CMake so that we can build > CMake ourselves? Did anybody do this already? It is legally possible because CMake is under the modified BSD licence: http://en.wikipedia.org/wiki/BSD_licenses which is a http://en.wikipedia.org/wiki/Permiss

Re: [CMake] Announcing CMake Tools for Visual Studio

2013-05-15 Thread Shlomi Fish
ke community. Please don't hesitate to contact > me if you've found any bugs that you'd like to report of it you're > interested in contributing to the project. Enjoy! > thanks for the contribution and for making it open source. I hope it

Re: [CMake] Creating a common (= across several projects) CMake module/include-file/library

2013-05-14 Thread Shlomi Fish
es-at-configure-time-td7583968.html#a7584113 > I see, but it's hard to see what to do based on this git commit: https://github.com/commontk/CTK/compare/00694c9f8a0da6ee28fb079902e6a8c3ec428058...891aa5443b110cc7e6aa0ec1339aad4b2c83ef9d Regards, Shlomi Fish > Hth > Jc > &

Re: [CMake] Creating a common (= across several projects) CMake module/include-file/library

2013-05-14 Thread Shlomi Fish
Hi Matthew, On Mon, 13 May 2013 18:17:58 -0400 Matthew Woehlke wrote: > On 2013-05-11 17:22, Shlomi Fish wrote: > > many of my CMake-based projects carry a common top-level "Common.cmake" file > > that I copy from one project to another and enhance, and since t

[CMake] Creating a common (= across several projects) CMake module/include-file/library

2013-05-11 Thread Shlomi Fish
ion. What would be the best way to achieve this? Regards, Shlomi Fish -- --------- Shlomi Fish http://www.shlomifish.org/ The Case for File Swapping - http://shlom.in/file-swap There is no IGLU cabal! The former cabalists are t

Re: [CMake] [cmake-developers] Ninja: files per second

2012-07-28 Thread Shlomi Fish
displays its output. This is frustrating because I want to see the output while the test suite is running. Is there anyway to do it like that? Regards, Shlomi Fish > See also > https://github.com/martine/ninja/blob/master/doc/manual.asciidoc#environment-variables > >

[CMake] Why does "make pdfs" build all targets and then warns on "cannot build TODO_pdf"?

2009-08-29 Thread Shlomi Fish
O_pdf', needed by `CMakeFiles/pdfs'. Stop. make[2]: *** [CMakeFiles/pdfs.dir/all] Error 2 make[1]: *** [CMakeFiles/pdfs.dir/rule] Error 2 make: *** [pdfs] Error 2 >>>>>>>>>>>>>>>>>> I'm on Linux (Mandriva Linux Cooker), using cma

Re: [CMake] How to make sure "make test" depends on "make all"

2009-06-25 Thread Shlomi Fish
On Thursday 25 June 2009 19:00:11 Tyler Roscoe wrote: > On Thu, Jun 25, 2009 at 04:58:46PM +0300, Shlomi Fish wrote: > > On Thursday 25 June 2009 14:50:39 Marcel Loose wrote: > > > As you already found out the hard way, it is not possible to let the > > > target &

Re: [CMake] How to make sure "make test" depends on "make all"

2009-06-25 Thread Shlomi Fish
quot;*.{exe,t}"; [and later] # Put the valgrind test last because it takes a long time. my @tests = sort { (($a =~ /valgrind/) <=> ($b =~ /valgrind/)) || ($a cmp $b)

Re: [CMake] How to make sure "make test" depends on "make all"

2009-06-25 Thread Shlomi Fish
eck" will run "make all" before running the test harness. Regards, Shlomi Fish > Best regards, > Marcel Loose. > > On Thu, 2009-06-25 at 12:45 +0300, Shlomi Fish wrote: > > On Thursday 25 June 2009 10:35:30 Marcel Loose wrote: > > > Hi Shlom

Re: [CMake] How to make sure "make test" depends on "make all"

2009-06-25 Thread Shlomi Fish
installed or run from ./) to work. So I need a dependency for "make all" on "make check"/"make test". Regards, Shlomi Fish > Best regards, > Marcel Loose. > > On Wed, 2009-06-24 at 15:04 +0300, Shlomi Fish wrote: > > Hi Marcel! > > > > On Tue

Re: [CMake] How to make sure "make test" depends on "make all"

2009-06-24 Thread Shlomi Fish
On Tuesday 23 June 2009 11:57:16 Hugo Heden wrote: > On Tue, Jun 23, 2009 at 9:56 AM, Shlomi Fish wrote: > > Hi all! > > > > I'm using cmake-2.6.4-3mdv2010.0 on Mandriva Linux Cooker, and ran into a > > problem. I want "make test" (which is a custom ta

Re: [CMake] How to make sure "make test" depends on "make all"

2009-06-24 Thread Shlomi Fish
use > EXCLUDE_FROM_ALL if you want your test programs to depend on the target > 'all'. > Tried it and it didn't work. I still couldn't get it to run the "all" target by default (i.e: depend on it). The EXCLUDE_FROM_ALL specifies whether "check&qu

[CMake] How to make sure "make test" depends on "make all"

2009-06-23 Thread Shlomi Fish
close failed in file object destructor: Error in sys.excepthook: }}} As you can see - the binaries themselves were not built. How can I solve this problem? Regards

[CMake] Win2 NSIS Installer says "CMake . Setup" instead of "Program Name"

2009-03-24 Thread Shlomi Fish
lcome to CMake . Setup". I think I've covered all the relevant NSIS variables. Here is a screenshot: http://www.shlomifish.org/Files/files/cmake-installer.png Have I run into this bug: http://public.kitware.com/Bug/print_bug_page.php?bug_id=8682 When will it be fixed? Rega

Re: [CMake] Emulating libtool's -version-info with CMake?

2008-12-09 Thread Shlomi Fish
On Tuesday 09 December 2008, Eric Noulard wrote: > 2008/12/9 Shlomi Fish <[EMAIL PROTECTED]>: > > Hi all! > > > > I have a .so library (for Unix/Windows) that I maintain several versions > > of. I'd like to have a symbolic links structure similar to >

[CMake] Emulating libtool's -version-info with CMake?

2008-12-09 Thread Shlomi Fish
BRARY, the resultant .so is just .so with no versions inside. How can I emulate the behaviour of libtool in this regard using CMake? Regards, Shlomi Fish -- ----- Shlomi Fish http://www.shlomifish.org/ The Case for File Swapp