microsoft / HoloJS

Provides a framework for creating holographic apps using JavaScript and WebGL.
MIT License
1.19k stars 114 forks source link

OpenGL and EGL includes are not found when trying to build the solution. #165

Closed whohlfeld closed 6 years ago

whohlfeld commented 6 years ago

2018-05-11 10_30_34-holojs-vs2017 - microsoft visual studio

When trying to build the solution for the first time, VS thows the errors that the source files for the includes cannot be opened. Stackoverflow only has a solution for this issue with Qt which does not work for me on this project.

omaralcheikh commented 6 years ago

Make sure you downloaded angle and copied the contents inside the angle folder

image

Almost-Done commented 6 years ago

Those headers come from the ANGLE submodule. There was an issue with the ANGLE submodule and it was not cloning properly due to a bad commit ID. I pushed a fix to master.

  1. Pull the latest master.
  2. Make sure you cloned the ANGLE submodule: If you already cloned HoloJS, run this git command from the repo: "git submodule update --init --recursive" If you did not clone HoloJS, do it recursively: git clone --recursive ...
whohlfeld commented 6 years ago

Thanks a lot, that solved the issue! But I still had to copy the ANGLE folder manually.