SFML community forums

Help => General => Topic started by: Dancer on May 19, 2016, 03:13:24 pm

Title: Problem with getting started with SFML - static linking (solved)
Post by: Dancer on May 19, 2016, 03:13:24 pm
Hi everyone,

I'm a total beginner, trying to get started with C++ and SFML. I followed the tutorial, got 46 errors, followed it again and got the same effect.

Windows 10 64-bit
Intel HD graphics card
Visual Studio 14 (2015), using Win32 platform.
SFML for VS 14 32-bit

Started with empty C++ project.

Additional Include Directories:
(click to show/hide)

Additional Library Directories:
(click to show/hide)

I have not copied SFML dlls (or anything else) to my project directory. As far as I understand, that is only necessary for dynamic linking.

Additional Dependiencies (release):
(click to show/hide)

Additional Dependiencies (debug):
(click to show/hide)

Preprocessor:
(click to show/hide)

main.cpp:
(click to show/hide)

Output log:
(click to show/hide)

It seems as if sfml-window-s-d.lib is missing some dependiencies, but I have no idea why.
Title: AW: Problem with getting started with SFML - static linking
Post by: eXpl0it3r on May 19, 2016, 05:42:30 pm
The list of linked libraries contains by default some libraries (e.g. user32.lib, etc). You seem to have removed them by accident.

Cleanest solution would be to start a new project and set things up again.
Alternatively you can google the function name and figure out what additional libraries need to be linked.
Title: Re: Problem with getting started with SFML - static linking
Post by: Dancer on May 19, 2016, 09:41:13 pm
Thanks :D The libs were there. I just had to check the option to inherit from parent or project defaults, basically adding ";%(AdditionalDependencies)" at the end. It works now.