I am trying to write a simple program where you move a square around the screen. However, i got the following error when I tried to build it:
1>------ Build started: Project: Move the Square!!!, Configuration: Debug Win32 ------
1> Move the Square!!!.cpp
1>MSVCRTD.lib(cinitexe.obj) : warning LNK4098: defaultlib 'msvcrt.lib' conflicts with use of other libs; use /NODEFAULTLIB:library
1>Move the Square!!!.obj : error LNK2001: unresolved external symbol "public: static class sf::Color const sf::Color::Red" (?Red@Color@sf@@2V12@B)
1>C:\Users\Gio\Desktop\Documents\C++ Programs\2D & 3D Games\Move the Square!!!\Debug\Move the Square!!!.exe : fatal error LNK1120: 1 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
How can i fix this? I will give the code if needed.