From 34c428df5f81bd295000bee7e069497a9654ee4a Mon Sep 17 00:00:00 2001 From: Krzosa Karol Date: Sun, 22 Jan 2023 12:08:05 +0100 Subject: [PATCH] Add vcvarsall info to README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b902d8c..1c35512 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,15 @@ you will need to add a field called ```remedy_build_system```, here is an exampl } ``` +### vcvarsall addon + +If you are developing using remedybg it seems pretty obvious that you would want access to the Microsoft compiler so additionally the package is shipping with the ```setup_vsvars.py``` (which I'm not sure I will be able to smuggle through package control). It sets up the vcvarsall paths for you, it was created by one of the sublime developers and it was hidden in an obsure repo. To make it work you need to add ```vc_vars_cmd``` to your settings, it needs to point at your vcvarsall: + +``` +"vc_vars_cmd": C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Auxiliary\Build\vcvarsall.bat, +"vc_vars_arch": "amd64", +``` + ### All in one Feature idea. By clicking using your middle mouse button you can issue most @@ -55,4 +64,5 @@ of the available debugger commands. ### Credits -* septag - plugin is based on his 10x plugin https://github.com/slynch8/10x/blob/main/PythonScripts/RemedyBG/RemedyBG.py \ No newline at end of file +* septag - plugin is based on his 10x plugin https://github.com/slynch8/10x/blob/main/PythonScripts/RemedyBG/RemedyBG.py +* OdatNurd - one of the sublime developers showed how to setup vsvarsall in sublime https://stackoverflow.com/questions/39881091/how-to-run-sublimetext-with-visual-studio-environment-enabled/ \ No newline at end of file