We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2924fe6 commit e22532dCopy full SHA for e22532d
Development/Editor/Core/Script/Lua/compile/wave.lua
@@ -22,6 +22,7 @@ function wave:do_compile(op)
22
cmd = cmd .. '--autooutput '
23
cmd = cmd .. string.format('--sysinclude="%s" ', self.sys_include_path:string())
24
cmd = cmd .. string.format('--sysinclude="%s" ', self.plugin_include_path:string())
25
+ cmd = cmd .. string.format('--include="%s" ', op.map_path:parent_path():string())
26
cmd = cmd .. string.format('--include="%s" ', self.jass_include_path:string())
27
cmd = cmd .. string.format('--define=WARCRAFT_VERSION=%d ', 100 * op.option.runtime_version.major + op.option.runtime_version.minor)
28
cmd = cmd .. string.format('--define=YDWE_VERSION_STRING=\\"%s\\" ', tostring(ydwe_version))
0 commit comments