You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
488 B
Plaintext
23 lines
488 B
Plaintext
1 year ago
|
#NoEnv
|
||
|
#SingleInstance, Force
|
||
|
SendMode, Input
|
||
|
SetBatchLines, -1
|
||
|
SetWorkingDir, %A_ScriptDir%
|
||
|
|
||
|
; Fuck windows for having this hardcoded
|
||
|
^Esc::return
|
||
|
|
||
|
^5::
|
||
|
IfWinNotExist, rpgptbuild
|
||
|
{
|
||
|
run, wt.exe cmd /K "title rpgptbuild && cd C:\Users\Cameron\Documents\rpgpt && vcvars"
|
||
|
}
|
||
|
WinActivate, rpgptbuild
|
||
|
If WinActive("rpgptbuild")
|
||
|
{
|
||
|
Send, {Enter}
|
||
|
Send, run_remedy build_desktop_debug.bat codegen
|
||
|
Send, {Enter}
|
||
|
}
|
||
|
Send, {Blind} ; So it doesn't hold down ctrl after running! WTF
|
||
|
return
|