diff options
| author | Ben Hutchinson <38333275+HutchyBen@users.noreply.github.com> | 2024-08-24 11:29:15 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-24 11:29:15 +0100 |
| commit | 8cc2ee8937b89f1639304cbd2526e85b17135372 (patch) | |
| tree | b7c6d0ccb053a7009a7d82eb50a5279a5e1e239c /projectile.el | |
| parent | 3c92d28c056c3553f83a513a35502b4547d29319 (diff) | |
Add support for xmake build utility (#1899)
Diffstat (limited to 'projectile.el')
| -rw-r--r-- | projectile.el | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/projectile.el b/projectile.el index 31a970d..83bfe89 100644 --- a/projectile.el +++ b/projectile.el @@ -3287,6 +3287,12 @@ a manual COMMAND-TYPE command is created with ;; File-based detection project types ;; Universal +(projectile-register-project-type 'xmake '("xmake.lua") + :project-file "xmake.lua" + :compile "xmake build" + :test "xmake test" + :run "xmake run" + :install "xmake install") (projectile-register-project-type 'scons '("SConstruct") :project-file "SConstruct" :compile "scons" |
