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 - Greek

Pages: [1]
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,

2
General / Can't install SFML
« on: October 01, 2009, 07:49:00 pm »
i push compile but he doesn't creates a exe :(

why? normal programs work.

3
General / Can't install SFML
« on: October 01, 2009, 07:00:15 pm »
mhh, ; did missed ...

but now i get the next error:

The application "C:\Dokumente und Einstellungen\...\Desktop\Programmieren\C++\SFML\SFML Test\Debug\SFML Test.exe" can't be started.

The System can not find the file.

4
General / Can't install SFML
« on: October 01, 2009, 06:44:42 pm »
Sry wrong Error:

This application can't be run, because sfml-system.dll was not found.

5
General / Can't install SFML
« on: October 01, 2009, 06:39:20 pm »

6
General / Can't install SFML
« on: October 01, 2009, 05:26:29 pm »
I have Windows Visual C++ 2008 Express Edition.

I used this application to install it:

http://www.sfml-dev.org/tutorials/1.5/start-vc.php

and this is my test application:

Code: [Select]
#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;
}

If made all right but when i start i get this:

Quote
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 ==========



Then a appear: Can not find test3.exe ...

What did i wrong?

Thanks, Greek

Pages: [1]
anything