Re: [CMake] CTest: regular expression not matched

2010-02-08 Thread Chris Hillery
I can think of two possibilities: 1. The output is slightly different than your regular expression in some invisible way. For example, maybe it's arg1: 0\targ2: another, with a tab in there rather than an explicit space. 2. The output is on stderr, rather than stdout. (I'm not sure if ctest will

Re: [CMake] CMAKE_RUNTIME_OUTPUT_DIRECTORY without the extra 'Debug' or 'Release' ?

2010-02-08 Thread Brad King
Erwin Coumans wrote: Hi, How can we specify the actual directory where the executable ends up in MSVC, without any messing around by adding 'Debug' or Release'? I tried the following lines: SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${BULLET_PHYSICS_SOURCE_DIR}) SET(

[CMake] CMake 2.8.1 RC 1 is ready to try

2010-02-08 Thread Bill Hoffman
CMake 2.8.1 RC 1 is ready to try: http://www.cmake.org/files/v2.8/?C=M;O=D Please try your projects with it. If you find any issues, let me know. Thanks. Here are the changes: Changes in CMake 2.8.1 RC 1 - Add NMake Makefiles JOM generator - Add PathScale compiler support - Add

Re: [CMake] CMake 2.8.1 RC 1 is ready to try

2010-02-08 Thread Mateusz Loskot
Bill Hoffman wrote: - Add NMake Makefiles JOM generator Is this the jom speedy thing from Trolls? http://labs.trolltech.com/blogs/2009/03/27/speeding-up-visual-c-qt-builds/ Best regards, -- Mateusz Loskot, http://mateusz.loskot.net ___ Powered by

[CMake] CMake, OpenBSD, and system libraries

2010-02-08 Thread Chuck Atkins
I'm trying to set up a nightly build for CMake on OpenBSD and I'm getting some linker issues. When I configure CMake to use it's internal versions of curl, expat, and libz, then everything builds. It does, however, fail the X11 test because of a linker error:

Re: [CMake] CMake 2.8.1 RC 1 is ready to try

2010-02-08 Thread Bill Hoffman
Mateusz Loskot wrote: Bill Hoffman wrote: - Add NMake Makefiles JOM generator Is this the jom speedy thing from Trolls? http://labs.trolltech.com/blogs/2009/03/27/speeding-up-visual-c-qt-builds/ Best regards, Yes, it is essentially a drop in replacement for nmake. The main reason for

Re: [CMake] CMAKE_RUNTIME_OUTPUT_DIRECTORY without the extra 'Debug' or 'Release' ?

2010-02-08 Thread Erwin Coumans
No, I just tried CMake 2.8.1 and it still adds 'Debug' and 'Release' directories to the name. Are you sure it has been fixed? Thanks a lot, Erwin On 8 February 2010 05:43, Brad King brad.k...@kitware.com wrote: Erwin Coumans wrote: Hi, How can we specify the actual directory where the

Re: [CMake] CMAKE_RUNTIME_OUTPUT_DIRECTORY without the extra 'Debug' or 'Release' ?

2010-02-08 Thread Erwin Coumans
Excuses, I enabled the wrong setting using 2.8.1 CMAKE_RUNTIME_OUTPUT_DIRECTORY seems to still add 'Debug' and 'Release' but CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG and CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE seems to work fine. Thanks a lot, Erwin On 8 February 2010 10:40, Erwin Coumans

Re: [CMake] CMAKE_RUNTIME_OUTPUT_DIRECTORY without the extra 'Debug' or 'Release' ?

2010-02-08 Thread David Cole
You have to set the target property to set the directories to something of your own choosing. CMake will always use Debug and Release by default for Visual Studio and Xcode, since they are multi-configuration development environments... On Mon, Feb 8, 2010 at 1:40 PM, Erwin Coumans

Re: [CMake] CMAKE_RUNTIME_OUTPUT_DIRECTORY without the extra 'Debug' or 'Release' ?

2010-02-08 Thread Erwin Coumans
I'm not using SET_TARGET_PROPERTIES, SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${BULLET_PHYSICS_SOURCE_DIR}) SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${BULLET_PHYSICS_SOURCE_DIR}) seems to work just fine for all targets with CMake 2.8.1. Thanks, Erwin On 8 February 2010 10:44, David Cole

[CMake] /fp:fast is not recognized but /arch:SSE is?

2010-02-08 Thread Erwin Coumans
/fp:fast goes to Command Line / Additional Options, so the setting in Code Generation / Floating Point Model still shows precise (/fp:precise) /arch:SSE seems to go to the right place, Code Generation, Enable Enhanced Instruction Set/Streaming SIMD Extensions (/arch:SSE) Are there plans to

[CMake] How to turn off incremental linking for MSVC Debug and RelWithDebInfo targets?

2010-02-08 Thread Erwin Coumans
I've search a while and noticed several similar requests, but couldn't find a solution that works. http://www.mail-archive.com/cmake@cmake.org/msg19612.html http://www.ogre3d.org/forums/viewtopic.php?f=4t=45160

Re: [CMake] CMake 2.8.1 RC 1 is ready to try

2010-02-08 Thread Pau Garcia i Quiles
On Mon, Feb 8, 2010 at 4:59 PM, Bill Hoffman bill.hoff...@kitware.com wrote: CMake 2.8.1 RC 1 is ready to try: [...] - Address issues:  #2336, #3571, #5041, #7541, #8725, #9011, #9042, #9054, #9163,  #9171, #9450, #9697, #9764, #9782, #9792, #9862, #9894, #9913,  #9916, #9917, #9918, #9949,

Re: [CMake] How to specify certain lib to be linked with before others? (QtOpenGL related)

2010-02-08 Thread michael kapelko
2010/2/9 michael kapelko korn...@gmail.com: Hello. I'm building an app with Qt4 that uses Horde3D under Linux. This app only works when -lHorde3D is specified *before* -lGL for linkage. By default, CMake puts -lGL before -lHorde3D, probably because I link with -lHorde3D as