reactphysics3d/examples/fallingcubes/CMakeLists.txt

18 lines
660 B
CMake
Raw Normal View History

2012-07-31 21:48:35 +00:00
# Minimum cmake version required
cmake_minimum_required(VERSION 2.6)
# Project configuration
PROJECT(FallingCubes)
# Copy the shaders used for the demo into the build directory
FILE(COPY "../common/opengl-framework/src/shaders/" DESTINATION "${CMAKE_CURRENT_BINARY_DIR}/shaders/")
2012-07-31 21:48:35 +00:00
# Headers
INCLUDE_DIRECTORIES("../common/opengl-framework/src/" "../common/")
2012-07-31 21:48:35 +00:00
# Create the example executable using the
# compiled reactphysics3d static library
ADD_EXECUTABLE(fallingcubes FallingCubes.cpp Scene.cpp Scene.h "../common/Box.cpp" "../common/Box.h" "../common/Viewer.cpp" "../common/Viewer.h")
2012-07-31 21:48:35 +00:00
TARGET_LINK_LIBRARIES(fallingcubes reactphysics3d openglframework)