[CMake] How to compile PHP with cmake in windows?

2010-11-12 Thread Mr Shore
Hi there! Anyone tried this and got good results? After google I only found those ugly way to compile PHP in its traditional way,glad if anyone can provide some info on this.. ___ Powered by www.kitware.com Visit other Kitware open-source projects at

[CMake] How to compile as "release" with /MT /GS in cmake?

2010-10-12 Thread Mr Shore
I'm using cl.exe if that matters,thanks in advance! ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages on-topic and check the CMake FAQ at: http://www.cmake

[CMake] Is there a tool pretty much like cmake for Java?

2010-08-20 Thread Mr Shore
Hi there The best building tool for Java I know so far seems to be maven, but it still doesn't give so much flexibility as cmake at all! Anyone knows a cmake-alike tool for java? ___ Powered by www.kitware.com Visit other Kitware open-source projects

[CMake] makefile to CMakeLists.txt, possible?

2010-08-19 Thread Mr Shore
As we know most (old) open source projects are using makefile, is there a tool to convert makefile to CMakeLists.txt ? ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please

[CMake] How to build .ax libraries with cmake?

2010-08-14 Thread Mr Shore
Hi all, The source and binary are available here: http://tmhare.mvps.org/downloads/vcam.zip How to build .ax libraries with cmake? ___ Powered by www.kitware.com Visit other Kitware open-source projects a

[CMake] Can cmake be used to build WDK driver applications?

2010-08-04 Thread Mr Shore
Hi all, I'm going to develop a WDKdriver , not sure whether cmake can help simplify the makefiles this time? Thanks! ___ Powered by www.kitware.com Visit other Kitware open-source projects at htt

[CMake] How to link against a .dll with cmake?

2010-07-24 Thread Mr Shore
Hi all I know that* target_link_libraries* can be used to link a* .lib* , but how to link a *.dll *into the project? ___ Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please k

[CMake] Why I got a run time "Debug Error!" with this CImg app built with cmake?

2010-07-16 Thread Mr Shore
The CMakeLists is like this: cmake_minimum_required(VERSION 2.6) project(test) include_directories(D:/Works/mixed/c/CImage/CImg-1.3.7) add_executable(test compare.cpp) I can build it successfully,but when I rub it will get a run time "Debug Error!". But it works in another project using the sam

[CMake] How to build an HelloWorld browser helper object using cmake?

2010-06-30 Thread Mr Shore
Hi all, Here is a tutorial that demonstrates how to create a helloworld BHO with ATL in visual studio. But I don't know how to build it with cmake , or say, how does cmake deal with ATL ? ___ Powere

[CMake] Trying to build a winpcap programme

2010-05-03 Thread Mr Shore
Hi all, I'm using winpcap for my project. The detailed steps to use it are here, but I don't know whether cmake supports these two operations: - If your program uses Win32 specific functions of WinPcap, remember to include *

[CMake] How do I tell cmake not to create a console window?

2010-05-02 Thread Mr Shore
I can achieve this by gcc : gcc -mwindows -o simple simple.c But only find this in cmake: add_executable(simple WIN32 simple.c) But it's not exactly the same as -mwindows, this will require the entry point to be WinMain, while gcc -mwindows doesn't require this. How should I do it properly?