added build_cmake.cmd for windows

This commit is contained in:
Marian Krivos 2012-08-10 11:48:43 +00:00
parent 1b4b83550a
commit 3e6e75d6f1

19
build_cmake.cmd Normal file
View File

@ -0,0 +1,19 @@
# POCO_STATIC=1 - for static build
# POCO_UNBUNDLED - for no built-in version of libs
# CMAKE_INSTALL_PREFIX=path - for install path
mkdir cmake-build
cd cmake-build
cmake ../. -DCMAKE_BUILD_TYPE=Debug -G"NMake Makefiles JOM" %1 %2 %3 %4 %5
jom /j3
jom install
del CMakeCache.txt
cmake ../. -DCMAKE_BUILD_TYPE=Release -G"NMake Makefiles JOM" %1 %2 %3 %4 %5
jom /j3
jom install
cd ..