skyline-dev / skyline

An environment for runtime hooking/code patching within Super Smash Bros Ultimate
MIT License
218 stars 33 forks source link

eiffel isn't a directory #63

Closed jIdle closed 2 years ago

jIdle commented 2 years ago

https://github.com/skyline-dev/skyline/blob/f44b3fe9278069b01d12f0d31a353c7f7b281d82/include/skyline/efl/service.hpp#L3

This include doesn't reference a directory that exists. I'm running into this issue when running make. error: eiffel/sl.h: No such file or directory 3 | #include "eiffel/sl.h" | ^~~~~ compilation terminated.

shadowninja108 commented 2 years ago

You've not initialized the submodules. I believe you'd do:

git submodule init
git submodule update
jIdle commented 2 years ago

Awesome, that worked perfectly. Thank you.