From cb7ed641f81b6d5895d1f63e3592f6254fb06182 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=91=D1=8B=D1=87=D0=BA=D0=BE=D0=B2=20=D0=90=D0=BD=D0=B4?= =?UTF-8?q?=D1=80=D0=B5=D0=B9?= Date: Fri, 15 Apr 2016 14:50:51 +0000 Subject: [PATCH] git-svn-id: svn://db.shs.com.ru/libs@89 a8b55f48-bf90-11e4-a774-851b48703e85 --- make_libs.bat | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/make_libs.bat b/make_libs.bat index af56db1..d35d5a1 100644 --- a/make_libs.bat +++ b/make_libs.bat @@ -1,2 +1,11 @@ +@echo off +set root=%CD% mkdir ..\libs_build_win -cd ..\libs_build_win && cmake_mgw ..\libs -DICU=1 -DUSB=1 -DCRYPT=1 && make install -j8 && for %%d in (..\libs\qad_widgets ..\libs\qad_utils ..\libs\qad_graphic ..\libs\qad_sql_table ..\libs\qad_application ..\libs\touch_widgets ..\libs\qad_blockview) do cd %%d && qmake && make install -j8 && cd .. +cd ..\libs_build_win && cmake_mgw ..\libs -DICU=1 -DUSB=1 -DCRYPT=1 && make install -j8 && for %%d in (qad_widgets qad_utils qad_graphic qad_sql_table qad_application touch_widgets qad_blockview %root%) do ( + @if %%d == %root% ( + echo ______ Build Success _______ + cd %%d + ) else ( + cd %%d && qmake ../../libs/%%d && make install -j8 && cd .. + ) +)