Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
255 views
in Technique[技术] by (71.8m points)

c++ - Undefined reference to (SFML)

I am trying to link SFML with CMake, but I have some issues with make:

/home/ishidex2/Documents/QtCreator/CMakeExample/main.cpp:-1: error: undefined reference to `sf::String::String(char const*, std::locale const&)'

And some kind of errors like this.

First of all, I installed SFML by this command:

sudo apt-get install libsfml-dev

And then followed this tutorial :

https://github.com/SFML/SFML/wiki/Tutorial:-Build-your-SFML-project-with-CMake

I think this is a problem with linking, but I don't know how to fix it.

My linking order is:

find_package(SFML 2 REQUIRED graphics window main system)
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

find_package does not perform any linking, you need to use target_link_libraries as seen in the link that you posted yourself:

target_link_libraries(${EXECUTABLE_NAME} ${SFML_LIBRARIES} ${SFML_DEPENDENCIES})

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...