1
General / Can't install SFML
« on: October 01, 2009, 08:42:48 pm »Quote from: "Luinechor"
Update: It works now. I had to link the library with the '-d' prefix.
Same here works now,
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.
Update: It works now. I had to link the library with the '-d' prefix.
#include <SFML/System.hpp>
#include <iostream>
int main()
{
sf::Clock Clock;
while (Clock.GetElapsedTime() < 5.f)
{
std::cout << Clock.GetElapsedTime() << std::endl;
sf::Sleep(0.5f);
}
return 0;
}
1>------ Erstellen gestartet: Projekt: test3, Konfiguration: Debug Win32 ------
1>Kompilieren...
1>test3_1.cpp
1>Manifest in Ressourcen wird kompiliert...
1>Microsoft (R) Windows (R) Resource Compiler Version 6.1.6723.1
1>Copyright (C) Microsoft Corporation. All rights reserved.
1>Verknüpfen...
1>test3_1.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""void __cdecl sf::Sleep(float)" (?Sleep@sf@@YAXM@Z)" in Funktion "_main".
1>test3_1.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public: float __thiscall sf::Clock::GetElapsedTime(void)const " (?GetElapsedTime@Clock@sf@@QBEMXZ)" in Funktion "_main".
1>test3_1.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol ""public: __thiscall sf::Clock::Clock(void)" (??0Clock@sf@@QAE@XZ)" in Funktion "_main".
1>C:\Dokumente und Einstellungen\ackermann\Desktop\Programmieren\C++\SFML\test3\Debug\test3.exe : fatal error LNK1120: 3 nicht aufgelöste externe Verweise.
1>Das Buildprotokoll wurde unter "file://c:\Dokumente und Einstellungen\ackermann\Desktop\Programmieren\C++\SFML\test3\test3\Debug\BuildLog.htm" gespeichert.
1>test3 - 4 Fehler, 0 Warnung(en)
========== Erstellen: 0 erfolgreich, Fehler bei 1, 0 aktuell, 0 übersprungen ==========