reactphysics3d/CMakeLists.txt
chappuis.daniel 19f72862bd add the file for compiling with cmake
git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@412 92aac97c-a6ce-11dd-a772-7fcde58d38e6
2011-01-14 16:05:45 +00:00

23 lines
320 B
CMake

# Minimum cmake version required
cmake_minimum_required(VERSION 2.6)
# Project configuration
project(ReactPhysics3D)
set(LIBRARY_OUTPUT_PATH lib/)
# Headers
include_directories(src)
# Library configuration
file (
GLOB_RECURSE
source_files
src/*
)
add_library (
reactphysics3d
STATIC
${source_files}
)