Re: [CMake] Wine + CMake + MSVC : Broken to check the working C compiler

2012-09-15 Thread Loaden
CMake freeze now. Any comments? > fixme:rpc:NdrStubCall2 new correlation description not implemented > fixme:ole:NdrCorrelationFree (0x189d240): stub > fixme:ole:NdrCorrelationInitialize (0x189d250, 0x189ca50, 2048, 0x0): stub > fixme:rpc:NdrStubCall2 new correlation description not implemented >

Re: [CMake] Wine + CMake + MSVC : Broken to check the working C compiler

2012-09-15 Thread Loaden
Follow this link: http://appdb.winehq.org/objectManager.php?sClass=version&iId=19444&iTestingId=63699&bShowAll=true I see: > *Steam Client crashes when authenticating Steam User Account* > > This problem can be caused by WINE requiring the native *ntlm_auth*library to > be installed (in order to

[CMake] Wine + CMake + MSVC : Broken to check the working C compiler

2012-09-15 Thread Loaden
I can using qmake + MSVC via Wine on Ubuntu 12.04, but when I want switch to cmake build system, it's broken. Any comments? D:\qpSOFT\Projects\WineTest\build>cmake .. > fixme:heap:HeapSetInformation 0xbe 0 0xacfd50 4 > -- Building for: NMake Makefiles > fixme:heap:HeapSetInformation 0x24

[CMake] Newbie questions; dual targeting, unit test support, cross-compilation

2012-09-15 Thread Davis Ford
Hi, I'm still trying to get up to speed on CMake, but I have a couple of questions that may fall into a sort of 'best practices' category, or just generally wondering if someone can point me to a couple examples that may be similar to what I want to accomplish. I'm starting a new project that will

Re: [CMake] FindGTK2

2012-09-15 Thread Sergei Nikulov
2012/9/15 Guillaume Duhamel : > Heya, > > I posted a patch for the FindGTK2 module almost > 10 months ago : > http://public.kitware.com/Bug/view.php?id=12596 > > The problem this patch is trying to fix is that gtk2 > is not detected on NetBSD (at least not when gtk2 > is installed through pkg_add),

Re: [CMake] How to check the operating system is MacOSX?

2012-09-15 Thread Andreas Pakulat
Hi, On Sat, Sep 15, 2012 at 12:46 PM, Loaden wrote: > http://www.cmake.org/Wiki/CMake_Useful_Variables > >> UNIX is TRUE on all UNIX-like OS's, including Apple OS X and CygWin WIN32 >> is TRUE on Windows, including CygWin APPLE is TRUE on Apple systems. Note >> this does not imply the system is

[CMake] FindGTK2

2012-09-15 Thread Guillaume Duhamel
Heya, I posted a patch for the FindGTK2 module almost 10 months ago : http://public.kitware.com/Bug/view.php?id=12596 The problem this patch is trying to fix is that gtk2 is not detected on NetBSD (at least not when gtk2 is installed through pkg_add), so it adds three more paths to search for gtk

Re: [CMake] How to check the operating system is MacOSX?

2012-09-15 Thread Loaden
http://www.cmake.org/Wiki/CMake_Useful_Variables UNIX is TRUE on all UNIX-like OS's, including Apple OS X and *CygWin* > WIN32 is TRUE on Windows, including *CygWin* APPLE is TRUE on Apple > systems. Note this does *not* imply the system is Mac OS X, only that > __APPLE__ is #defined in C/C++ h

Re: [CMake] How to check the operating system is MacOSX?

2012-09-15 Thread Alexander Neundorf
On Saturday 15 September 2012, Loaden wrote: > Follow this wiki: > http://www.itk.org/Wiki/CMake/Examples#Check_operating_system > > There say: > > IF(WIN32) > > > >...do something... > > > > ELSE(WIN32) > > > >...do something else... > > > > ENDIF(WIN32) > > > > or: > > IF(CM