Every time i start a new SDL project at college it works fine with linking the include, lib, VC++ etc. But when im home i do everything the same i get some stupid fucking error that i cannot fix.
So here's my problem...im trying to open a SLD windows with some text and when you press enter a new word appears on a different position, however i still havent coded it. Heres the code for the basic idea
#include <SDL.h>
#include <SDL_ttf.h>
using namespace std;
This is a linker error. Basically it's saying you it can't find the code associated with these functions' names.
If the functions are provided in a library, make sure visual is aware where to find the .lib files.
If they're provided in a cpp file, add the cp file to your project.