src/Graphics/CMakeLists.txt
author Tero Marttila <terom@fixme.fi>
Fri, 11 Sep 2009 15:34:48 +0300
changeset 446 e411c0799fcc
parent 430 74e562e16399
permissions -rw-r--r--
fix NetworkSocket to not forget want_* state if resetting between connect()'s
412
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     1
FILE(GLOB GRAPHICS_SOURCE_FILES "*.cc")
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     2
FILE(GLOB GRAPHICS_HEADER_FILES "*.hh")
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     3
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     4
# what ClanLib components we need
430
74e562e16399 back-out incomplete Console/GUI stuff from default branch
Tero Marttila <terom@fixme.fi>
parents: 417
diff changeset
     5
set (GRAPHICS_CLANLIB_COMPONENTS Display GL PARENT_SCOPE)
417
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 412
diff changeset
     6
c503e0c6a740 support for building without Network/Graphics, although the disable-graphics case is kind of hackish still
Tero Marttila <terom@fixme.fi>
parents: 412
diff changeset
     7
# list of source files
412
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     8
set (GRAPHICS_SOURCES ${GRAPHICS_SOURCE_FILES} ${GRAPHICS_HEADER_FILES} PARENT_SCOPE)
721c60072091 new graphics code compiles... no, it doesn't work yet
Tero Marttila <terom@fixme.fi>
parents:
diff changeset
     9