Hello, I'm trying to use this glfw wrapper: [https://github.com/ephja/nim-glfw](https://github.com/ephja/nim-glfw). I clone the repo, enter the examples directory, and execute nim c -r minimal.nim, just as the documentation provides. Compilation succeeds, great! Now I attempt to run minimal.exe but I get a runtime error: could not import: glfwSetWindowUserPointer*
What I've tried so far: 1. Ensure glfw3.dll is in the same directory (It is). 2. Ensure glfw3.dll is 64-bit dll (It is). 3. Ensure glfw3.dll contains the symbol glfwSetWindowUserPointer (using dependency walker I confirmed this) 4. Commenting out the wrapper definition of glfwSetWindowUserPointer (I get the same error for other symbols now) At this point I don't know what else to try. I'm on Windows 8.1 64 bit running Nim 0.17.2. Any tips would be appreciated. Thank you.
