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:
parent
38a7abe4b6
commit
19f72862bd
22
CMakeLists.txt
Normal file
22
CMakeLists.txt
Normal 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}
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user