Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - roystben

Pages: [1]
1
General / Issue with building a window
« on: July 14, 2011, 03:33:36 am »
Relinking it somehow fixed the issue(s), thank you for your help.

2
General / Issue with building a window
« on: July 13, 2011, 09:07:38 pm »
Ahh, misunderstood, did not know I had to add "sfml-window.lib" to the linker. Thank you for your help.

And yet another issue occurs, "This program cant start because sfml-window.dll is missing from your computer.", and as far as I know I have included the correct directories to have it find the dll.

3
General / Issue with building a window
« on: July 13, 2011, 07:26:54 pm »
Went to the project properties, VC++ Directories Include Directories, and Linker additional library directories.

4
General / Issue with building a window
« on: July 13, 2011, 09:14:29 am »
I have linked it, and yet the issue persists.

5
General / Issue with building a window
« on: July 13, 2011, 07:41:31 am »
Here is the error that is showing up.

1>------ Build started: Project: Window, Configuration: Debug Win32 ------
1>window-window.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: virtual __thiscall sf::Window::~Window(void)" (__imp_??1Window@sf@@UAE@XZ) referenced in function _main
1>window-window.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: void __thiscall sf::Window::Display(void)" (__imp_?Display@Window@sf@@QAEXXZ) referenced in function _main
1>window-window.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall sf::Window::Window(class sf::VideoMode,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,unsigned long,struct sf::WindowSettings const &)" (__imp_??0Window@sf@@QAE@VVideoMode@1@ABV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@KABUWindowSettings@1@@Z) referenced in function _main
1>window-window.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __thiscall sf::VideoMode::VideoMode(unsigned int,unsigned int,unsigned int)" (__imp_??0VideoMode@sf@@QAE@III@Z) referenced in function _main
1>C:\Users\Ben\Desktop\Window\Debug\Window.exe : fatal error LNK1120: 4 unresolved externals
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========


I am using Visual C++ 2010, any info on how to fix this would be great.

Pages: [1]