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

Pages: [1] 2
1
General / Re: Cmake problem
« on: October 28, 2014, 04:11:32 pm »
Ok its working!

2
General / Re: Cmake problem
« on: October 25, 2014, 01:40:10 pm »
Ok so if i start to compile the programm he begins but then he says "the program crashed" and stops Compiling.
And if i set a Break Point and start debbuging he starts with debbuging but he stops too with debbuging.
I think i have false libs or something like that...

3
General / Re: Cmake problem
« on: October 24, 2014, 09:06:48 pm »
OK now i downloaded the TDM and it Builts!
But i have an other Error :D
The programm shuts down if i start it....

4
General / Re: Cmake problem
« on: October 24, 2014, 05:57:45 pm »
Do u have a GCC MinGW for Version 4.9?

5
General / Re: Cmake problem
« on: October 24, 2014, 05:13:49 pm »
I dont get it...

6
General / Re: Cmake problem
« on: October 16, 2014, 08:14:41 pm »
One last question.I think i have the problem.

Error:
CMake Error at CMakeLists.txt:8 (target_link_libraries):
Cannot specify link libraries for target
"C:/Programiersachen/QT/SFML-Cmake/SFML/lib}" which is not built by this
project.
 
I dont understand the error... Its precompiled so i dont understand why he says that error.

7
General / Re: Cmake problem
« on: October 16, 2014, 07:55:09 pm »
^^

8
General / Re: Cmake problem
« on: October 16, 2014, 01:51:35 pm »
Sorry for my stupidity... :D
I didnt saw that it was link_DIRECTORY and not link_libary or something like that.Thanks for
ure help :)
but i have one more problem now...Why he cant find the libs and debug/optimized?!

9
General / Re: Cmake problem
« on: October 15, 2014, 06:19:32 pm »
Hm okay ure right :D
Ok now ive wrote

Quote
link_directories(sfml-graphics;sfml-window;sfml-sytem)

But again errors and i dont know why....

10
General / Re: Cmake problem
« on: October 15, 2014, 05:13:03 pm »
I dont include it ^^
I search the directory then i link it.

11
General / Re: Cmake problem
« on: October 14, 2014, 06:24:04 pm »
Again i use Qt.

12
General / Re: Cmake problem
« on: October 14, 2014, 05:11:00 pm »
I tried it,same error :(

13
General / Cmake problem
« on: October 14, 2014, 04:22:25 pm »
Hey,
Iam working with QT and i want to make a SFML Project with Cmake.I built my Libs etc. but i have an error in my List's.Ive pushed the includes and libs in my project folder and he finds the includes but not my Libs.I think he doesnt even search.My Lists is a Attach.

Code:
Quote
#include <SFML/Graphics.hpp>



int main()
{
    // create the window
    sf::RenderWindow window(sf::VideoMode(800, 600), "My window");

    // run the program as long as the window is open
    while (window.isOpen())
    {
        // check all the window's events that were triggered since the last iteration of the loop
        sf::Event event;
        while (window.pollEvent(event))
        {
            // "close requested" event: we close the window
            if (event.type == sf::Event::Closed)
                window.close();
        }

        // clear the window with black color
        window.clear(sf::Color::Black);

        // draw everything here...
        // window.draw(...);

        // end the current frame
        window.display();
    }

    return 0;
}

I hope u can help me :)
Toren

14
General / Re: Learn Sfml
« on: March 26, 2014, 05:52:47 pm »
hm ok thx :)

15
General / Learn Sfml
« on: March 24, 2014, 03:36:07 pm »
Hi :)
I want to learn SFML and i search someone who can tell me a little bit more about SFML than i know
because I realy want to finish my Plattformer or want to make a realy little game to learn SFML.
If you had a bit of time I would be very glad :)
Sincerly Toren.

Pages: [1] 2
anything