Re: Trouble linking to static library with Visual D

2014-08-02 Thread Rainer Schuetze via Digitalmars-d-learn
On 02.08.2014 04:43, quakkels wrote: Hello D'ers, I've been really impressed with Visual D and I've decided to undertake my first D project using Visual D in Visual Studio 2012. However, I've had trouble trying to figure out how to link a static library. I've outlined my situation in this

Re: Trouble linking to static library with Visual D

2014-08-02 Thread quakkels via Digitalmars-d-learn
When you get to the link stage, you'll probably run into undefined symbols: you'll have to add a dependency in the Project Dependencies dialog to add the static library to the linker command line of the executable. Thank you for that tip! After a fair bit of frustration (and your help) I've

Trouble linking to static library with Visual D

2014-08-01 Thread quakkels via Digitalmars-d-learn
Hello D'ers, I've been really impressed with Visual D and I've decided to undertake my first D project using Visual D in Visual Studio 2012. However, I've had trouble trying to figure out how to link a static library. I've outlined my situation in this Stack Overflow question.