Include sqlite3 in Jam.root file
Hello. I'm trying to compile a C++ project using boost/bjam that uses SQLite3. Normally I would: g++ main.cpp -lsqlite3 -o main.exe But I don't know how to specify the library in the Jam file. Can someone tell me how you specify the libraries in a jam file? I'm using RHEL 6.2 (64bit) in case it matters. Thanks in advance for any and all help. Damian -------------------------------------------------------------------------------- "There is no gene for the Human Spirit" -- GATTACA --------------------------------------------------------------------------------
AMDG On 07/06/2012 07:25 PM, Damian wrote:
Hello.
I'm trying to compile a C++ project using boost/bjam that uses SQLite3.
Normally I would: g++ main.cpp -lsqlite3 -o main.exe
But I don't know how to specify the library in the Jam file.
Can someone tell me how you specify the libraries in a jam file?
I'm using RHEL 6.2 (64bit) in case it matters.
Thanks in advance for any and all help.
lib sqlite3 ; exe main : main.cpp sqlite3 ; In Christ, Steven Watanabe
participants (2)
-
Damian
-
Steven Watanabe