mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-17 12:02:36 +01:00
510c46d2ad
Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
17 lines
386 B
Batchfile
17 lines
386 B
Batchfile
rem usage
|
|
rem build_cmake ( Debug | Release )
|
|
|
|
rem -DPOCO_STATIC=1 - for static build
|
|
rem -DPOCO_UNBUNDLED - for no built-in version of libs
|
|
rem -DCMAKE_INSTALL_PREFIX=path - for install path
|
|
|
|
mkdir cmake-build
|
|
cd cmake-build
|
|
|
|
del CMakeCache.txt
|
|
cmake ../. -DCMAKE_BUILD_TYPE=%1 -G"NMake Makefiles JOM" -DENABLE_TESTS=ON -DENABLE_SAMPLE=ON %2 %3 %4 %5
|
|
jom /i /j3
|
|
jom /i install
|
|
|
|
cd ..
|