-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcmake-integration-conan.el
88 lines (65 loc) · 3.51 KB
/
cmake-integration-conan.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
;;; cmake-integration-conan.el --- Retrieve targets -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
(require 'cmake-integration-build)
(defun cmake-integration--get-conan-available-profiles ()
"Get the available conan profiles."
(let ((output (shell-command-to-string "conan profile list")))
(cdr (split-string output "\n" t))))
(defun cmake-integration-select-conan-profile ()
"Select one of the available conan profiles and return the chosen one."
(interactive)
(let* ((all-profiles (cmake-integration--get-conan-available-profiles))
(choice (completing-read "Conan profile: " all-profiles nil t)))
(setq cmake-integration-conan-profile choice)))
(defun cmake-integration-run-conan-list ()
"Run `conan list` to list installed packages.
The result is displayed in a `Conan List` buffer."
(interactive)
(let* ((output (shell-command-to-string "conan list"))
(buffer (get-buffer-create "*Conan List*")))
(with-current-buffer buffer
(erase-buffer)
(insert output))
(display-buffer buffer)))
(defun cmake-integration--get-conan-run-command (&optional profile)
"Get the command to run `conan install' using PROFILE.
The command is run from the build folder of the current cmake
configuration."
(if profile
(format "%s --profile %s" (cmake-integration--get-conan-run-command) profile)
(format "cd %s && conan install %s %s"
(cmake-integration-get-build-folder)
(cmake-integration--get-project-root-folder)
cmake-integration-conan-arguments)))
(defun cmake-integration-get-conan-run-command ()
"Get the command to run `conan install'.
The command is run from the build folder of the current cmake
configuration and the profile passed to conan is taken from the
`cmake-integration-conan-profile' variable."
(if cmake-integration-conan-profile
;; If cmake-integration-conan-profile is set, it can be either a string with a single profile, or an alist mapping cmake profile names to conan profile names
(if (stringp cmake-integration-conan-profile)
(cmake-integration--get-conan-run-command cmake-integration-conan-profile)
;; Map cmake profile name to conan profile name
(let* ((cmake-profile-name (alist-get 'name cmake-integration-configure-preset))
(conan-profile-name (alist-get cmake-profile-name cmake-integration-conan-profile nil nil 'equal)))
;; Note that if we have no conan profile name in the alist
;; for the current cmake profile nane, then
;; `conan-profile-name' is nil and no profile will be used
(cmake-integration--get-conan-run-command conan-profile-name)))
;; If cmake-integration-conan-profile is not set we get the conan command without using a profile
(cmake-integration--get-conan-run-command nil)))
;;;###autoload (autoload 'cmake-integration-run-conan "cmake-integration")
(defun cmake-integration-run-conan ()
"Run conan install in the current build folder."
(compile (cmake-integration-get-conan-run-command)))
(defun cmake-integration--prepend-conan-command (cmake-command)
"Prepend the CMAKE-COMMAND with the conan command.
The output can be passed to compile,"
(let* ((conan-command (format "%s && " (cmake-integration-get-conan-run-command))))
(if cmake-integration-include-conan-toolchain-file
(format "%s%s --toolchain conan_toolchain.cmake" conan-command cmake-command)
(format "%s%s" conan-command cmake-command))))
(provide 'cmake-integration-conan)
;;; cmake-integration-conan.el ends here