Skip to content

Commit

Permalink
feat(project): make project-cmake obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
abougouffa committed Feb 22, 2024
1 parent 420c43e commit c3630f7
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 13 deletions.
13 changes: 0 additions & 13 deletions modules/me-project.el
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,6 @@
(unless (eq ibuffer-sorting-mode 'project-file-relative)
(ibuffer-do-sort-by-project-file-relative))))

(use-package project-cmake
:straight (:host github :repo "juanjosegarciaripoll/project-cmake")
:init
(+map! :keymaps '(c-mode-map c++-mode-map c-ts-mode-map c++-ts-mode-map)
:infix "p"
"m" '(nil :wk "project-cmake")
"mb" #'project-cmake-build
"mg" #'project-cmake-configure
"mt" #'project-cmake-test
"mI" #'project-cmake-install
"ms" #'project-cmake-scan-kits
"mS" #'project-cmake-shell))


(provide 'me-project)

Expand Down
27 changes: 27 additions & 0 deletions modules/obsolete/me-project-cmake.el
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
;;; me-project-cmake.el --- CMake integration for built-in project.el (replaced with projection) -*- lexical-binding: t; -*-

;; Copyright (C) 2022-2024 Abdelhak Bougouffa

;; Author: Abdelhak Bougouffa (rot13 "nobhtbhssn@srqbencebwrpg.bet")

;;; Commentary:

;;; Code:

(use-package project-cmake
:straight (:host github :repo "juanjosegarciaripoll/project-cmake")
:init
(+map! :keymaps '(c-mode-map c++-mode-map c-ts-mode-map c++-ts-mode-map)
:infix "p"
"m" '(nil :wk "project-cmake")
"mb" #'project-cmake-build
"mg" #'project-cmake-configure
"mt" #'project-cmake-test
"mI" #'project-cmake-install
"ms" #'project-cmake-scan-kits
"mS" #'project-cmake-shell))


(provide 'obsolete/me-project-cmake)

;;; me-project-cmake.el ends here

0 comments on commit c3630f7

Please sign in to comment.