From 19f72862bd744982a41b4df1f25aaa61befce3c6 Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Fri, 14 Jan 2011 16:05:45 +0000 Subject: [PATCH] add the file for compiling with cmake git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@412 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- CMakeLists.txt | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 00000000..e32f3704 --- /dev/null +++ b/CMakeLists.txt @@ -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} +)