-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcmake-integration.el
57 lines (43 loc) · 1.89 KB
/
cmake-integration.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
;;; cmake-integration.el --- Easily configure cmake projects and run/debug targets -*- lexical-binding: t -*-
;; Author: Darlan Cavalcante Moreira <[email protected]>
;; Version: 0.1
;; Package-Requires: ((emacs "28.1") (f "0.20.0") (s "1.12.0") (json "1.5") (dash "2.19.1"))
;; Homepage: https://github.com/darcamo/cmake-integration
;; Keywords: c c++ cmake languages tools
;; URL: https://github.com/darcamo/cmake-integration/
;; This file is not part of GNU Emacs
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Provide functions to configure cmake projects, and to compile and
;; run a given target. Completions are provided with targets obtained
;; from cmake. It also support cmake presets.
;;; Code:
(require 'project)
(require 'f)
(require 's)
(require 'json)
(require 'dash)
(require 'cl-extra)
(require 'cmake-integration-variables)
(require 'cmake-integration-core)
(require 'cmake-integration-core-presets)
(require 'cmake-integration-conan)
(require 'cmake-integration-configure)
(require 'cmake-integration-build)
(require 'cmake-integration-launch)
(require 'cmake-integration-doxygen)
(require 'cmake-integration-ctest)
(require 'cmake-integration-cpack)
(require 'cmake-integration-extra)
(require 'cmake-integration-transient)
(provide 'cmake-integration)
;;; cmake-integration.el ends here