Re: [CMake] RC compiler on Linux - new problem

2012-01-04 Thread pellegrini
Hi Michael first of all best wishes for 2012 ! Let's start 2012 with a new question for CMake community ! It is related with prior discussions we had about rc compiler on Linux. Sorry but I had many things to do in the meantime and I could only come back to it recently. As a reminder, my

Re: [CMake] RC compiler on Linux - new problem

2012-01-04 Thread Michael Hertling
On 01/04/2012 02:08 PM, pellegrini wrote: Hi Michael first of all best wishes for 2012 ! Thanks, the same to you! Let's start 2012 with a new question for CMake community ! It is related with prior discussions we had about rc compiler on Linux. Sorry but I had many things to do in the

Re: [CMake] RC compiler on Linux - new problem

2011-10-27 Thread Michael Hertling
On 10/25/2011 10:16 AM, pellegrini wrote: Hi Michael, I tried to adapt the files you gave me to my project. It almost works. As a reminder, there were a CMakeLists.txt with an overloaded add_executable function that created a sym_link for the rc files and a shell file (rc.sh) used to

Re: [CMake] RC compiler on Linux - new problem

2011-10-25 Thread pellegrini
Hi Michael, I tried to adapt the files you gave me to my project. It almost works. As a reminder, there were a CMakeLists.txt with an overloaded add_executable function that created a sym_link for the rc files and a shell file (rc.sh) used to suit the rc compiler call to my needs. I found

Re: [CMake] RC compiler on Linux - new problem - solved

2011-10-24 Thread pellegrini
thanks a lot Michael. Finally, this was not such a trivial problem but I should find my way with the examples you gave me. Eric Michael Hertling a écrit : On 10/21/2011 06:49 PM, pellegrini wrote: Hi all, after digging and googling some hours I did a first step in the right direction.

[CMake] RC compiler on Linux

2011-10-21 Thread pellegrini
Hi all, I use CMake 2.8.5 on Linux and Windows machine to build a Fortran project. On Windows, no problem, the build and the resulting GUI are OK. On Linux, the build seems to be OK but the resulting GUI gives an empty screen. Discussing with Michael a few days ago made me think that it could

Re: [CMake] RC compiler on Linux - new problem

2011-10-21 Thread pellegrini
Hi all, after digging and googling some hours I did a first step in the right direction. I had to add the command: enable_language(rc) set(cmake_rc_compiler_arg1 -cif8) The resource compiler I (must) use is the one provided by winteracter Fortran library. This led me to a serie of

Re: [CMake] RC compiler on Linux - new problem

2011-10-21 Thread Michael Hertling
On 10/21/2011 06:49 PM, pellegrini wrote: Hi all, after digging and googling some hours I did a first step in the right direction. I had to add the command: enable_language(rc) set(cmake_rc_compiler_arg1 -cif8) The resource compiler I (must) use is the one provided by winteracter