Code Search for Developers
 
 
  

CMakeLists.txt from Boson at Krugle


Show CMakeLists.txt syntax highlighted

project(lib3ds)

include_directories(
	${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}
)

set(lib3ds_SRCS
	io.c
	float.c
	vector.c
	matrix.c
	quat.c
	tcb.c
	ease.c
	chunk.c
	file.c
	background.c
	atmosphere.c
	shadow.c
	viewport.c
	material.c
	mesh.c
	camera.c
	light.c
	tracks.c
	node.c
)

# AB: lib3ds does not like -ansi
#     so we just use the flags that lib3ds uses here and throw the normal flags
#     away.
set(CMAKE_C_FLAGS "")
boson_add_library(lib3ds STATIC ${lib3ds_SRCS})





See more files for this project here

Boson

Boson is an OpenGL real-time strategy game. It is designed to run on Unix (Linux) computers, and is built on top of the KDE, Qt and kdegames libraries.

Project homepage: http://sourceforge.net/projects/boson
Programming language(s): C,C++
License: other

  CMakeLists.txt
  atmosphere.c
  atmosphere.h
  background.c
  background.h
  camera.c
  camera.h
  chunk.c
  chunk.h
  chunktable.h
  chunktable.sed
  ease.c
  ease.h
  file.c
  file.h
  float.c
  float.h
  io.c
  io.h
  light.c
  light.h
  material.c
  material.h
  matrix.c
  matrix.h
  mesh.c
  mesh.h
  node.c
  node.h
  quat.c
  quat.h
  shadow.c
  shadow.h
  tcb.c
  tcb.h
  tracks.c
  tracks.h
  types.h
  vector.c
  vector.h
  version.h
  viewport.c
  viewport.h