I added c:\foo to my include files list and i make a folder in C: called foo which contained myinclude.h and i added #include "MyInclude.h" to the top of console.cpp and tryed to compile console.cpp and this is the following error i received...
Code:
Compiling...
Command line warning D4002 : ignoring unknown option '/Ob2'
console.cpp
C:\EqEmu\cvs\eqemu\NewSource\world\../common/../common/database.h(30) : fatal error C1083: Cannot open include file: 'mysql.h': No such file or directory
Error executing cl.exe.
console.obj - 1 error(s), 1 warning(s)
This the top of the console.cpp where i added the #include "MyInclude.h" command.
Code:
*/
#include "MyInclude.h"
#include "../common/debug.h"
#include <iostream>
using namespace std;
Kinda frustrating but I guess I can expect that since im not an avid Visual Studio user.
Any suggestions?