mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-19 00:46:03 +01:00
18 lines
405 B
Batchfile
18 lines
405 B
Batchfile
REM POCO_STATIC=1 - for static build
|
|
REM POCO_UNBUNDLED - for no built-in version of libs
|
|
REM CMAKE_INSTALL_PREFIX=path - for install path
|
|
|
|
RMDIR cmake-build
|
|
mkdir cmake-build
|
|
cd cmake-build
|
|
|
|
cmake ../. -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=Debug %1 %2 %3 %4 %5
|
|
nmake install
|
|
|
|
del CMakeCache.txt
|
|
|
|
cmake ../. -G"NMake Makefiles" -DCMAKE_BUILD_TYPE=Release %1 %2 %3 %4 %5
|
|
nmake install
|
|
|
|
|