[CMake] BitDefender and cmakecompilerid.exe ot cmakecxxcompilerid.exe

2015-12-29 Thread Mauro Ziliani
Hi all. BitDefender puts the files cmakecompilerid.exe and cmakecxxcompilerid.exe in quarantena. It find Gen:Variant.Midie.5130 It's a fake or is it true? Mauro -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitwar

[CMake] How to include config.h.in in VS project

2015-12-29 Thread Mauro Ziliani
Hi all. I'm using CMake 3.4.1 for my projects. I'm working with Visual studio 10 2010 express and wxFormBuilder I'd like to include config.h.in and the wxFormBuilder projects (which has .fbp extension) in source_group. In CMakeLists.txt i put ... source_group("FormBiulder FBP" FILES main.fbp) so

Re: [CMake] Visual Studio 10 and wxWidgets

2015-12-11 Thread Mauro Ziliani
I miss some lines. This is that works On Fri, Dec 11, 2015 at 7:06 PM, Mauro Ziliani wrote: > Hi all. > I solved my problem with a custom script. > > I attach it to this message. > The script is very very poor, but for my purpouse it works. > > The script should be simply i

Re: [CMake] Visual Studio 10 and wxWidgets

2015-12-11 Thread Mauro Ziliani
Hi all. I solved my problem with a custom script. I attach it to this message. The script is very very poor, but for my purpouse it works. The script should be simply included MZ On Thu, Dec 10, 2015 at 4:23 PM, Mauro Ziliani wrote: > Hi all. > I'm in trouble with wxWidgets 3

[CMake] Visual Studio 10 and wxWidgets

2015-12-10 Thread Mauro Ziliani
Hi all. I'm in trouble with wxWidgets 3 and Visual Studio 10 express. I need to change the type of libraries depending on the configuration compiler If I compile in debug mode I need wxbase30ud.lib, while in release mode wxbase30u But if I generate the project for VS2010Express the wxbase30u.l

[CMake] wxWidgets and Visual Studio

2015-08-29 Thread Mauro Ziliani
Hi all. I'm porting my projects from bakefile (legacy) generator to cmake. The projects will be generated for vs2008 e gcc linux. When I generate for vs2008 either for Debug and Release the wx include directory is ${WXWIN}/include/vc_lib/mswu, while i expected that for Debug the include dir shou

Re: [CMake] CMake and Visual Studio multiconfig solution

2015-08-22 Thread Mauro Ziliani
Oh Yes I mean DEBUG_POSTFIX. DEBUG_POSTFIX? http://www.cmake.org/cmake/help/v3.3/prop_tgt/DEBUG_POSTFIX.html On Sat, Aug 22, 2015 at 12:11 PM, Mauro Ziliani wrote: > Hi all. > My name is mauro and i am a freelance programmer and I work different > platforms: windows and Linux. >

[CMake] CMake and Visual Studio multiconfig solution

2015-08-22 Thread Mauro Ziliani
Hi all. My name is mauro and i am a freelance programmer and I work different platforms: windows and Linux. I'm trying cmake 3.3.1 and I am in trouble to do this. I need to compile my app with visual studio and achieve the follow behavior. If I compile the app in debug configuration I need to appe

[CMake] Fwd: Debug and Release build from a make option

2014-08-21 Thread Mauro Ziliani
-- Forwarded message -- From: Mauro Ziliani Date: 2014-08-21 16:16 GMT+02:00 Subject: Re: [CMake] Debug and Release build from a make option To: Nils Gladitz So the best choice for Makefile compilation environment is use two different folder out-of-the-source: one for debug

[CMake] Debug and Release build from a make option

2014-08-21 Thread Mauro Ziliani
Hi all. I came from bakefile 0.2.9 generator. In my projects I defined the default build type as debug. So when I run make my project will build in debug mode. When I need to produce the final executable i have to run make BUILD=release and I'll get the final release executable. How can I ac