Hi!
I tried using SFML with Code::Blocks now I got some issues.
This is my Code:
#include <SFML/Graphics.hpp>
int main()
{
// Create the main rendering window
sf::RenderWindow App(sf::VideoMode(800, 600, 32), "SFML Graphics");
// Start game loop
while (App.IsOpened())
{
// Process events
sf::Event Event;
while (App.GetEvent(Event))
{
// Close window : exit
if (Event.Type == sf::Event::Closed)
App.Close();
}
// Clear the screen (fill it with black color)
App.Clear();
// Display window contents on screen
App.Display();
}
return EXIT_SUCCESS;
}
I get those Errors when i run my built Application:
partyhost:~ noah$ /Users/noah/Desktop/vektor/bin/Release/vektor
dyld: Library not loaded: @executable_path/../Frameworks/sndfile.framework/Versions/A/sndfile
Referenced from: /Library/Frameworks/sfml-audio.framework/Versions/A/sfml-audio
Reason: image not found
Trace/BPT trap: 5
partyhost:~ noah$
Anyone got some help?
Thanks![/code]