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} +)