Is there anything needed for windows glfw3 exe's ?

Monkey Targets Forums/Desktop/Is there anything needed for windows glfw3 exe's ?

Paul - Taiphoz(Posted 2017) [#1]
So I'm making a little tool for the MMO EvE Online, early reports indicate that for some reason some people on windows 10 just cant run it, the tool boots then dies without error, most people are fine but the number of people with the issue is rather annoying.

When we build for GLFW3 is there any additional crap that the end users need other than OpenAL ?


therevills(Posted 2017) [#2]
Over on SoCoder, Jay puts a lot of his AGameAWeek stuff over there such as his Clusters of Hex:

http://socoder.net/?showcase=57848

In his zip he has the following:
* data folder
* game.exe
* oalinst.exe


Soap(Posted 2017) [#3]
These are the dlls I include with exe https://dl.dropboxusercontent.com/u/116871/monkey_dlls.zip
I include Angle built exes too with the GLFW3 one as it seems to work when the GLFW3 one doesn't. game.exe game_angle.exe


Paul - Taiphoz(Posted 2017) [#4]
yeah I'v been including the same things, I finally solved the issue the user was having, turns out it was my fault when prompting the user for a file path I assumed they would all end the string with a / but he didnt and that was enough to screw over the whole things, solved now tho.