I get the following error when I try to create a simple "hello world" using "fltk" :
ld cannot find -lXft
=== Build finished: 1 errors, 0 warnings ===
But, the same program can be built using these commands in the terminal:
g++ -Wall -o main.o -c main.cpp
g++ main.o -lfltk -lfltk_images -o main
I know where my libraries are and I know what libraries I want to use--just do not know how to tell code blocks to use them.