From: Uwe Stöhr Date: Mon, 5 Dec 2011 01:12:13 +0000 (+0000) Subject: cmake/build.bat: explicitly compile with the console window in debug mode X-Git-Tag: 2.1.0beta1~2278 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=465166c88212fec06f3ea8c543ea1e57e481514b;p=features.git cmake/build.bat: explicitly compile with the console window in debug mode git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40369 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/cmake/build.bat b/development/cmake/build.bat index f91983eb54..1c38358027 100755 --- a/development/cmake/build.bat +++ b/development/cmake/build.bat @@ -75,13 +75,13 @@ if [%2]==[] ( if "%1%" == "devel" ( REM Build solution to develop LyX - cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_FILES=0 -DLYX_NLS=1 %DEPENDENCIES_DOWNLOAD% + cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_FILES=0 -DLYX_NLS=1 -DLYX_RELEASE=0 -DLYX_CONSOLE=ON %DEPENDENCIES_DOWNLOAD% msbuild lyx.sln /p:Configuration=Debug /t:LyX /t:tex2lyx ) if "%1%" == "install" ( REM Build solution to develop LyX - cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_FILES=1 -DLYX_INSTALL=1 %DEPENDENCIES_DOWNLOAD% -DLYX_CONSOLE=OFF + cmake %LYX_SOURCE% -G%USED_STUDIO% -DLYX_MERGE_FILES=1 -DLYX_INSTALL=1 -DLYX_RELEASE=1 -DLYX_CONSOLE=OFF %DEPENDENCIES_DOWNLOAD% msbuild lyx.sln /p:Configuration=Release /t:ALL_BUILD msbuild INSTALL.vcxproj /p:Configuration=Release )