-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild-meson.el
52 lines (40 loc) · 1.35 KB
/
build-meson.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
;;; meson.el --- Build Meson projects in Emacs -*- lexical-binding: t; -*-
;; Copyright (C) 2024 Justin Andreas Lacoste
;; Author: Justin Andreas Lacoste <[email protected]>
;; URL: https://github.com/27justin/build.el
;; Version: 0.1
;; Keywords: compile, build-system, meson
;;; Commentary:
;; This package implements a transient menu for the meson build system.
;; Alongside three interactive commands.
;;; Requirements
(require 'build-api)
(require 'build-ninja)
;;; Code
(defun build-meson-project-p ()
(build--project-file-exists-p "meson.build"))
(defun build-meson-setup (&optional directory)
"`meson setup' a target"
(interactive
(list (transient-arg-value "-C=" (transient-args 'build-meson-transient))))
(funcall build--compile (format "meson setup %s" directory)))
(transient-define-prefix build-meson-transient ()
"Meson Build Commands"
:value '("build")
["Meson Options\n"
["Generic"
("-C" "Build directory" "-C=" :prompt "Build directory: " :class transient-option :always-read t)
]
["Ninja Options"
("-j" "Threads" "-j " :prompt "# of threads: " :class transient-option)
("-n" "Dry run" "-n")
]
]
[""
["Setup"
("s" "Setup" build-meson-setup)]
["Build"
("b" "Build (Ninja)" build-ninja-build)]
])
(add-to-list 'build--systems '(build-meson-project-p . build-meson-transient))
(provide 'build-meson)