Re: [CMake] cmake support D programming?

2011-11-24 Thread Jens Mueller
Gour wrote: > On Sun, 7 Aug 2011 10:27:17 +0200 > Jens Mueller wrote: > > Hello Jens, > > > If I find some time I will add gdc and ldc support. It is not much > > work to add these. > > Does it meant that support for dmd is done? cmaked2 supports dmd and g

Re: [CMake] cmake support D programming?

2011-08-07 Thread Jens Mueller
jonathan MERCIER wrote: > Dear, > Since Fedora 16 will add a D2 compiler (ldc), i would like to know if > cmake support yet this language? You can try out http://code.google.com/p/cmaked2/. http://code.google.com/p/cmaked2/wiki/GettingStarted should get you started. If I find some time I will ad

Re: [CMake] Magical transformation of /path/to/libmylib.so to -lmylib

2011-07-14 Thread Jens Mueller
Michael Hertling wrote: > On 07/14/2011 12:54 AM, Jens Mueller wrote: > > Michael Hertling wrote: > >> On 07/11/2011 11:34 PM, Jens Mueller wrote: > >>> Hi, > >>> > >>> I'm trying to figure out where the path for a found library is changed

Re: [CMake] Magical transformation of /path/to/libmylib.so to -lmylib

2011-07-13 Thread Jens Mueller
Michael Hertling wrote: > On 07/11/2011 11:34 PM, Jens Mueller wrote: > > Hi, > > > > I'm trying to figure out where the path for a found library is changed. > > In my case Curses is found at /usr/lib/libcurses.so. When linking with > > gcc "/usr/lib/li

[CMake] Magical transformation of /path/to/libmylib.so to -lmylib

2011-07-11 Thread Jens Mueller
Hi, I'm trying to figure out where the path for a found library is changed. In my case Curses is found at /usr/lib/libcurses.so. When linking with gcc "/usr/lib/libcurses.so" is replaced by "-lcurses" as it is specified at http://www.cmake.org/Wiki/CMake_2.6_Notes#Linking_to_System_Libraries. Wher

[CMake] Adding dependency using set_source_files_properties

2010-08-31 Thread Jens Mueller
Hi, I've been trying to add manual dependencies using set_source_files_properties. I know that I can add a dependency like this SET_SOURCE_FILES_PROPERTIES(source_file.foo PROPERTIES OBJECT_DEPENDS /path/to/some_depend_file.bar) in a CMakeLists.txt. In my case, I want to add support for a new lan