mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-03-22 06:50:54 +07:00
[platform] migrating Windows file watcher and restarter builds to CMake template
GitOrigin-RevId: edbfcd80e42ee25c2f68f68ad949d5481ec72400
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f56e0968be
commit
0c3fcb736e
3
native/WinFsNotifier/.gitignore
vendored
3
native/WinFsNotifier/.gitignore
vendored
@@ -1,4 +1,3 @@
|
||||
/.idea/
|
||||
/cmake-build-*/
|
||||
/build32/
|
||||
/build64/
|
||||
/build-*/
|
||||
|
||||
@@ -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
|
||||
2
native/WinRestarter/.gitignore
vendored
2
native/WinRestarter/.gitignore
vendored
@@ -1,3 +1,3 @@
|
||||
/.idea/
|
||||
/cmake-build-*/
|
||||
/build/
|
||||
/build-*/
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user