add the file for compiling with cmake

git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@412 92aac97c-a6ce-11dd-a772-7fcde58d38e6
This commit is contained in:
chappuis.daniel 2011-01-14 16:05:45 +00:00
parent 38a7abe4b6
commit 19f72862bd

22
CMakeLists.txt Normal file
View File

@ -0,0 +1,22 @@
# 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}
)