mirror of
https://github.com/luksamuk/engine-psx.git
synced 2025-04-28 13:28:02 +03:00
Update development and build configuration
This commit is contained in:
parent
831298af17
commit
95e725b99c
2 changed files with 16 additions and 4 deletions
|
@ -1,6 +1,19 @@
|
|||
((nil
|
||||
(eval . (let ((root (projectile-project-root)))
|
||||
(let ((includes (list "/opt/psn00bsdk/include/libpsn00b"
|
||||
(concat root "include"))))
|
||||
(concat root "include")))
|
||||
(neotreebuf (seq-filter (lambda (buf) (equal (buffer-name buf) " *NeoTree*"))
|
||||
(buffer-list))))
|
||||
(setq-local flycheck-clang-include-path includes)
|
||||
(setq-local flycheck-gcc-include-path includes))))))
|
||||
(setq-local flycheck-gcc-include-path includes)
|
||||
(when neotreebuf
|
||||
(with-current-buffer (first neotreebuf)
|
||||
(setq-local neo-hidden-regexp-list
|
||||
(append '("\\pcsx.json$"
|
||||
"\\.frag$"
|
||||
"\\.vert$"
|
||||
"\\.lua$"
|
||||
"\\.mcd$")
|
||||
(default-value 'neo-hidden-regexp-list)))
|
||||
(neotree-refresh))))))))
|
||||
|
||||
|
|
3
Makefile
3
Makefile
|
@ -7,8 +7,7 @@ all: ./build/sonicengine.cue
|
|||
dir: ./build
|
||||
|
||||
run: ./build/sonicengine.cue
|
||||
pcsx-redux-appimage -gdb -run -interpreter \
|
||||
-loadiso ./build/sonicengine.cue
|
||||
pcsx-redux-appimage -gdb -run -interpreter -iso ./build/sonicengine.cue
|
||||
|
||||
./build/sonicengine.cue: ./build
|
||||
cmake --build ./build
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue