[platform] migrating Windows file watcher and restarter builds to CMake template

GitOrigin-RevId: edbfcd80e42ee25c2f68f68ad949d5481ec72400
This commit is contained in:
Roman Shevchenko
2021-01-21 10:55:17 +01:00
committed by intellij-monorepo-bot
parent f56e0968be
commit 0c3fcb736e
4 changed files with 2 additions and 30 deletions

View File

@@ -1,4 +1,3 @@
/.idea/
/cmake-build-*/
/build32/
/build64/
/build-*/

View File

@@ -1,14 +0,0 @@
@ECHO OFF
SET BUILD_DIR=%1
SET PLATFORM=%2
SET CMAKE=%CMAKE_PATH%\bin\cmake
IF EXIST "%BUILD_DIR%" RMDIR /S /Q "%BUILD_DIR%"
MKDIR "%BUILD_DIR%" & CD "%BUILD_DIR%"
"%CMAKE%" -G "Visual Studio 12 2013" -T v120_xp -A "%PLATFORM%" ..
IF ERRORLEVEL 1 EXIT 1
"%CMAKE%" --build . --config Release
IF ERRORLEVEL 1 EXIT 2

View File

@@ -1,3 +1,3 @@
/.idea/
/cmake-build-*/
/build/
/build-*/

View File

@@ -1,13 +0,0 @@
@ECHO OFF
SET BUILD_DIR=build32
SET CMAKE=%CMAKE_PATH%\bin\cmake
IF EXIST "%BUILD_DIR%" RMDIR /S /Q "%BUILD_DIR%"
MKDIR "%BUILD_DIR%" & CD "%BUILD_DIR%"
"%CMAKE%" -G "Visual Studio 12 2013" -T v120_xp -A win32 ..
IF ERRORLEVEL 1 EXIT 1
"%CMAKE%" --build . --config Release
IF ERRORLEVEL 1 EXIT 2