mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-18 00:15:27 +01:00
added build_cmake.cmd for windows
This commit is contained in:
parent
1b4b83550a
commit
3e6e75d6f1
19
build_cmake.cmd
Normal file
19
build_cmake.cmd
Normal 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 ..
|
Loading…
x
Reference in New Issue
Block a user