Welcome, Guest. Please login or register. Did you miss your activation email?

Author Topic: Window and System librarys needed for Graphics? Solved.  (Read 2627 times)

0 Members and 1 Guest are viewing this topic.

Darkivader

  • Newbie
  • *
  • Posts: 2
    • View Profile
Window and System librarys needed for Graphics? Solved.
« on: April 14, 2009, 01:34:33 am »
Hello, im new to SFML, and recently got it set up on VS2008 Express. Everything seems to be working fine, except for the fact that i cannot compile any code that uses the graphics include/library without the window and system include/librarys being included also. This isnt a critial problem, but while reading the tutorial it said that window is included in graphics, therefore you would not need to include/link to it?

Im using the latest SVN debug static build of SFML which i downloaded using tortoiseSVN.

Thanks for any help.

Tank

  • SFML Team
  • Hero Member
  • *****
  • Posts: 1486
    • View Profile
    • Blog
    • Email
Window and System librarys needed for Graphics? Solved.
« Reply #1 on: April 14, 2009, 01:41:30 am »
Graphics doesn't include the window package, they're completely separated.

Darkivader

  • Newbie
  • *
  • Posts: 2
    • View Profile
Window and System librarys needed for Graphics? Solved.
« Reply #2 on: April 14, 2009, 02:16:58 am »
Thanks for clarifying, I guess I must have misinterpreted the documentation.

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Window and System librarys needed for Graphics? Solved.
« Reply #3 on: April 14, 2009, 08:30:10 am »
Quote
Graphics doesn't include the window package, they're completely separated.

It does include the sfml-window headers (just have a look at the header file...). However it doesn't link to the sfml-window library.
Laurent Gomila - SFML developer

Tank

  • SFML Team
  • Hero Member
  • *****
  • Posts: 1486
    • View Profile
    • Blog
    • Email
Window and System librarys needed for Graphics? Solved.
« Reply #4 on: April 15, 2009, 01:28:03 am »
Quote from: "Laurent"
Quote
Graphics doesn't include the window package, they're completely separated.

It does include the sfml-window headers (just have a look at the header file...). However it doesn't link to the sfml-window library.

I guess nobody was talking about including a header file, but about the package in general terms, which implies the lib.

Nexus

  • SFML Team
  • Hero Member
  • *****
  • Posts: 6286
  • Thor Developer
    • View Profile
    • Bromeon
Re: Window and System librarys needed for Graphics? Solved.
« Reply #5 on: April 15, 2009, 02:39:51 am »
I guess somebody was (even if not exclusively). ;)
Quote from: "Darkivader"
include/library [...] include/link
Zloxx II: action platformer
Thor Library: particle systems, animations, dot products, ...
SFML Game Development:

Laurent

  • Administrator
  • Hero Member
  • *****
  • Posts: 32504
    • View Profile
    • SFML's website
    • Email
Window and System librarys needed for Graphics? Solved.
« Reply #6 on: April 15, 2009, 08:36:58 am »
Quote
I guess nobody was talking about including a header file, but about the package in general terms, which implies the lib.

Including a package requires both the headers and the libraries. I thought it was relevant to say that SFML already does the former.
I was also trying to make what the tutorial says less confusing: "includes the window package" really means includes its header files.
Laurent Gomila - SFML developer

Tank

  • SFML Team
  • Hero Member
  • *****
  • Posts: 1486
    • View Profile
    • Blog
    • Email
Window and System librarys needed for Graphics? Solved.
« Reply #7 on: April 15, 2009, 01:40:53 pm »
True, from the code's perspective. The tutorial states:
Quote
SFML/Window.hpp is no more explicitly requiered, as it is already included by the graphics package.

I wonder that this sentence didn't clarify everything. ;)

 

anything