dimok789 / loadiine_gx2

A WiiU SD Loader with GX2 GUI
GNU General Public License v3.0
287 stars 78 forks source link

gx2_types.h not found with latest dynamic_libs #123

Closed mariogamer2 closed 8 years ago

mariogamer2 commented 8 years ago

/home/*/libwiiu/loadiine_gx2/src/gui/GuiElement.h:35:36: fatal error: dynamic_libs/gx2_types.h: No such file or directory

include "dynamic_libs/gx2_types.h"

Dynamic libs is up-to-date.

CreeperMario commented 8 years ago
#include "dynamic_libs/gx2_types.h"    // This works for files inside the main src folder, but not for files inside other sub-folders (such as the gui folder that GuiElement.h is located in).
#include "../dynamic_libs/gx2_types.h" // This snippet fixes sub-folder linking, but don't perform this on files inside the main src folder.

I hope that helps. (Just to clarify, use the second line to fix this error).

mariogamer2 commented 8 years ago

No,it's strange,it seem like the submodule is not totally downloaded...