Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bulid.bat #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions bulid.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
cd D:\Program Files (x86)\Microsoft Visual Studio 14.0\VC
@echo off
echo 该批处理文件:
echo 所在完整路径:%~dp0
echo 当前目录 %cd%
echo 文件名为:%~n0.bat
pause >nul
(call "D:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat") && echo 子批处理处理成功
rem 切换到批处理所在文件的目录 cd D:\Lua Learning\notepad-plus-plus-6.8.8\scintilla\win32
cd %~dp0
rem (常规格式的编译)
nmake NOBOOST=1 -f scintilla.mak
rem (调试状态模式的编译)
rem nmake NOBOOST=1 DEBUG=1 -f scintilla.mak (debugging build)
pause >nul