diff options
author | 2021-01-11 15:54:12 -0500 | |
---|---|---|
committer | 2021-01-11 15:54:12 -0500 | |
commit | 6f46b884aa3369aca8a12ecf7c976ea9be7ffb0d (patch) | |
tree | 71ce308c14af98074087d75fba89839e0e7adabf /modules/textadept/run.lua | |
parent | 8cfd96f95306e1ee35ad8fd11f54c79c78ed0435 (diff) | |
download | textadept-6f46b884aa3369aca8a12ecf7c976ea9be7ffb0d.tar.gz textadept-6f46b884aa3369aca8a12ecf7c976ea9be7ffb0d.zip |
Added Meson support.
Requires latest Scintillua.
Diffstat (limited to 'modules/textadept/run.lua')
-rw-r--r-- | modules/textadept/run.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/textadept/run.lua b/modules/textadept/run.lua index 3812df50..dce8873c 100644 --- a/modules/textadept/run.lua +++ b/modules/textadept/run.lua @@ -325,7 +325,7 @@ end -- is the project's root directory. -- @class table -- @name build_commands -M.build_commands = {--[[Ant]]['build.xml']='ant',--[[Dockerfile]]Dockerfile='docker build .',--[[Make]]Makefile='make',GNUmakefile='make',makefile='make',--[[Maven]]['pom.xml']='mvn',--[[Ruby]]Rakefile='rake'} +M.build_commands = {--[[Ant]]['build.xml']='ant',--[[Dockerfile]]Dockerfile='docker build .',--[[Make]]Makefile='make',GNUmakefile='make',makefile='make',--[[Meson]]['meson.build']='meson compile',--[[Maven]]['pom.xml']='mvn',--[[Ruby]]Rakefile='rake'} --- -- Builds the project whose root path is *root_directory* or the current project |