How to link a static library using WAF?

Viewed 2663

I'm using OpenSSL in my C++ program, and I need to link crypto and ssl with it. If it were for example gcc, I would just pass:

-lcrypto -lssl

I am adding this dependency in Network-Simulator 3. But I don't know how to do this in WAF. How should I add them as a dependency?

2 Answers
Related