1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-01 02:45:43 +02:00
qmckl/tools/config_tangle.el

54 lines
1.7 KiB
EmacsLisp
Raw Permalink Normal View History

2020-11-05 15:53:28 +01:00
;; Thanks to Tobias's answer on Emacs Stack Exchange:
;; https://emacs.stackexchange.com/questions/38437/org-mode-batch-export-missing-syntax-highlighting
2020-10-27 17:24:44 +01:00
2021-03-10 12:58:38 +01:00
2020-11-05 15:53:28 +01:00
(package-initialize)
2021-03-06 19:46:27 +01:00
(add-to-list 'package-archives
'("gnu" . "https://elpa.gnu.org/packages/"))
(add-to-list 'package-archives
'("melpa-stable" . "https://stable.melpa.org/packages/"))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(setq package-archive-priorities '(("melpa-stable" . 100)
("melpa" . 50)
("gnu" . 10)))
2020-11-07 15:41:49 +01:00
(require 'font-lock)
2021-03-06 19:46:27 +01:00
(setq org-confirm-babel-evaluate nil)
(global-font-lock-mode t)
2021-03-10 12:58:38 +01:00
(setq org-src-fontify-natively t)
2021-03-06 19:46:27 +01:00
(org-babel-do-load-languages
'org-babel-load-languages
'(
(emacs-lisp . t)
(shell . t)
(python . t)
2021-03-10 12:58:38 +01:00
(fortran . t)
2021-03-06 19:46:27 +01:00
(C . t)
(org . t)
(makefile . t)
))
2021-03-10 12:58:38 +01:00
; The following is required to compute the file names
2021-11-17 17:06:30 +01:00
(setq top_builddir (or (getenv "top_builddir") "."))
(setq srcdir (or (getenv "srcdir") "."))
(setq src (concat top_builddir "/src/"))
(setq tests (concat top_builddir "/tests/"))
2021-03-09 01:16:23 +01:00
(setq name (file-name-nondirectory (substring buffer-file-name 0 -4)))
(setq f (concat src name "_f.F90"))
(setq fh_func (concat src name "_fh_func.F90"))
(setq fh_type (concat src name "_fh_type.F90"))
2021-11-17 17:06:30 +01:00
(setq c (concat src name ".c"))
(setq h_func (concat src name "_func.h"))
(setq h_type (concat src name "_type.h"))
(setq h_private_type (concat src name "_private_type.h"))
(setq h_private_func (concat src name "_private_func.h"))
(setq c_test (concat tests "test_" name ".c"))
(setq f_test (concat tests "test_" name "_f.F90"))
2021-11-17 17:06:30 +01:00
(org-babel-lob-ingest (concat srcdir "/tools/lib.org"))
2021-03-09 01:16:23 +01:00