Update development and build configuration

This commit is contained in:
Lucas S. Vieira 2024-07-11 09:27:03 -03:00
parent 831298af17
commit 95e725b99c
2 changed files with 16 additions and 4 deletions

View file

@ -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))))))))

View file

@ -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