summaryrefslogtreecommitdiffstats
path: root/src/CMakeLists.txt
blob: 613e6043d630326ef0d721db608c1cac986fbeb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
add_executable(zoom
  BSPTree.cpp BSPTree.h
  Game.cpp Game.h
  config.h
  gl.h
  Level.cpp Level.h
  MathUtil.cpp MathUtil.h
  Renderer.cpp Renderer.h
  Shader.cpp Shader.h
  ShadowVolume.cpp ShadowVolume.h
  Texture.cpp Texture.h
  Triangle.h
  TriangleRecord.h
  zoom.cpp
)
target_link_libraries(zoom ${Boost_LIBRARIES} ${OPENGL_gl_LIBRARY} ${GLEW_LIBRARY} ${GLPNG_LIBRARY} ${LIBXML2_LIBRARIES})