I was asked by a friend to set up a C::B project file for a network redirection program of his. On his home computer he has everything in very unconventional locations (among other issues). When initially compiling his program it stops at the first file with the warning:
mysql/mysql.h: no such file or directory
and this is in reference to a basic include directive:
#include <mysql/mysql.h>
My first instinct was since my installation location for mysql is likely different than his id set up a 'mysql' global variable to point to
C:\Dev\mySQL\mysql-5.0.45-win32\include
which is the location of the include folder on my system. I put that path as the 'base' field and compile again to recieve the same error. When compiling C::B itself the only value i had to set in the 'wx' global variable was the base field being assigned to:
C:\Dev\wxWidgets\wxWidgets-2.8.4
and that doesnt even point directly to the header files. It points to the precompiled headers. And using
#include <wx/blah.h>
works perfectly. So im confused as to why the same concept isnt working with regards to mysql. Can someone tell me what im doing wrong ?