Re: [CMake] Does cmake support fortran lang with F extension?

2009-01-03 Thread Bill Hoffman
谢歆 wrote: hi, I decide to use cmake for an old FORTAN program what consists a lot of F extension source code and wrote a simple CMakelists.txt. Hoever, the default setting did not seem to support F extension. \ ukmorad_SRCS has to be set BEFORE the add_library call. My cmakelists.txt is

Re: [CMake] Does cmake support fortran lang with F extension?

2009-01-03 Thread Maik Beckmann
谢歆 schrieb am Samstag 03 Januar 2009 um 16:22: hi, I decide to use cmake for an old FORTAN program what consists a lot of F extension source code and wrote a simple CMakelists.txt. Hoever, the default setting did not seem to support F extension. CMake support the F extension. And when I

[CMake] Mac OS X framework bundles don't end up in the specified build directory

2009-01-03 Thread Tron Thomas
I want to use CMake to configure a project so that all programs and libraries are built into the same directory. So for a debug build of the project the directory might be something like ProjectName/build/ Debug. This works fine for most targets. However built Mac OS X framework bundles

[CMake] Release mode compilation

2009-01-03 Thread kafou nmento
Hi all! I'm wondering the way to build a simple project in release mode with CMake. All my trials lead to a debug build. And the way to build a Qt app in release please.   Please, it is urgent for my boss.   Thanks to all in advance. ___ CMake

Re: [CMake] Release mode compilation

2009-01-03 Thread Eric Noulard
2009/1/3 kafou nmento ngondor...@yahoo.fr: Hi all! I'm wondering the way to build a simple project in release mode with CMake. SET(CMAKE_BUILD_TYPE Release) You may do it using CMake GUI or command line. All my trials lead to a debug build. Did you search for this issue? A somehow blind