I have an application that needs some crypto libs from OpenSSL.

the application is uses other SSL functions fine, like https etc (so QT already has SSL built in), but i want to encrypt a password in the INI with blowfish so i need to include some openssl headers.

I cannot the application to build when i include it..

Example:
I tried the following:

Qt Code:
  1. extern{#include "openssl/evp.h";}
To copy to clipboard, switch view to plain text mode 

and
Qt Code:
  1. #include <openssl/evp.h>
To copy to clipboard, switch view to plain text mode 

What is the proper way to declare these includes so Qt will find them?


One question I have is the use of < > and where the application will look for these files. where should they be located for the app to see them?

I know that if i use " (quotes) then it looks in the source directory.

Platform Linux (ubuntu) GCC and Commercial Qt version. 4.4.1

Thanks