On Tuesday, 21 October 2014 at 15:42:39 UTC, Mike Parker wrote:
On 10/21/2014 8:40 PM, Edn wrote:

http://www.avast.com

So if I compile DMD as x64 I can then use the libraries for VC120 that comes with the glfw windows binaries ? http://www.glfw.org/download.html
and then compile using :
dmd -d main.d glfw3.lib

You will need to pass -m64 to get 64-bit compilation and will also need to compile and link the deimos glfw module. So assuming something like:

main.d
-deimos
--glfw
---glfw3.d

dmd -m64 main.d deimos/glfw/glfw3.d glfw.lib

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com

Sorry, I'm very new to D.

Anyways, would
deimos/glfw/glfw3.d
be needed if I have
import glfw.glfw3;
in my main.d ?

Reply via email to