diff options
| author | Fuwn <[email protected]> | 2022-02-21 21:35:19 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 00:46:11 -0700 |
| commit | 99f585f95da5fc9a1d775bd1e9053bfadbc9daa3 (patch) | |
| tree | 11f836f716bff31e41cf1eee7351b25d9014b3dc /examples | |
| parent | fix(divina_compile): update for vs2022 (diff) | |
| download | archived-divina-99f585f95da5fc9a1d775bd1e9053bfadbc9daa3.tar.xz archived-divina-99f585f95da5fc9a1d775bd1e9053bfadbc9daa3.zip | |
feat(divina_compile): allow custom vs path
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/greet/Divina.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/greet/Divina.lua b/examples/greet/Divina.lua index 30649ea..d718d01 100644 --- a/examples/greet/Divina.lua +++ b/examples/greet/Divina.lua @@ -12,6 +12,7 @@ local name = "greet-" .. tostring(os.time()) --- @field public compile_options string[] --- @field public minimum_divina_version string --- @field public sources string[] +--- @field public visual_studio string Package = { name = name, version = "0.1.0", @@ -27,6 +28,7 @@ Package = { }, type = Divina.Type.Bin, arch = Divina.Arch.x64, + visual_studio = "C:\\Program Files\\Microsoft Visual Studio\\2022\\Community\\VC\\Auxiliary\\Build\\vcvars64.bat", } -- http://lua-users.org/wiki/ModulesTutorial |