PROJECT(big-to-texture)
INCLUDE_DIRECTORIES(.)

#-------------------------------------------------------------------------------
SET( SOURCE_FILES
  code/application.cpp
  code/main.cpp )

ADD_EXECUTABLE(
  big-to-texture
  ${SOURCE_FILES}
  )
TARGET_LINK_LIBRARIES(
  big-to-texture
  ${CLAW_APPLICATION_LIBRARIES}
  ${CLAW_GRAPHIC_LIBRARIES}
  )
