diff options
| author | Fuwn <[email protected]> | 2022-02-22 05:35:19 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 07:46:11 +0000 |
| commit | 013767f729e51e5567554d8f627af8ba9fe8ebbe (patch) | |
| tree | 11f836f716bff31e41cf1eee7351b25d9014b3dc /examples | |
| parent | fix(divina_compile): update for vs2022 (diff) | |
| download | divina-013767f729e51e5567554d8f627af8ba9fe8ebbe.tar.xz divina-013767f729e51e5567554d8f627af8ba9fe8ebbe.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 |