mirror of
https://github.com/veden/Rampant.git
synced 2024-12-26 20:54:12 +02:00
27 lines
1.3 KiB
EmacsLisp
27 lines
1.3 KiB
EmacsLisp
;; for configuration - projectile-project-configure-cmd
|
|
;; for compilation - projectile-project-compilation-cmd
|
|
;; for testing - projectile-project-test-cmd
|
|
;; for installation - projectile-project-install-cmd
|
|
;; for packaging - projectile-project-package-cmd
|
|
;; for running - projectile-project-run-cmd
|
|
;; for configuring the test prefix - projectile-project-test-prefix
|
|
;; for configuring the test suffix - projectile-project-test-suffix
|
|
;; for configuring the related-files-fn property - projectile-project-related-files-fn
|
|
;; for configuring the src-dir property - projectile-project-src-dir
|
|
;; for configuring the test-dir property - projectile-project-test-dir
|
|
;; projectile-configure-use-separate-buffer
|
|
;; projectile-compile-use-separate-buffer
|
|
;; projectile-test-use-separate-buffer
|
|
;; projectile-package-use-separate-buffer
|
|
;; projectile-run-use-separate-buffer
|
|
;; projectile-install-use-separate-buffer
|
|
|
|
|
|
((nil . ((projectile-project-install-cmd . "./make.sh copy")
|
|
(projectile-install-buffer-suffix . "install")
|
|
(projectile-project-package-cmd . "./make.sh zip")
|
|
(projectile-package-buffer-suffix . "install")
|
|
(projectile-project-uninstall-cmd . "./make.sh clear")
|
|
(projectile-uninstall-buffer-suffix . "install")
|
|
(projectile-project-run-cmd . "factorio"))))
|