Added Box2D

This commit is contained in:
Julian Nießner
2018-05-06 12:43:20 +02:00
parent cb5469bb89
commit d175d433a8
351 changed files with 123545 additions and 1 deletions

10
external/Box2D-2.3.1/box2d-config.cmake vendored Normal file
View File

@@ -0,0 +1,10 @@
set(BOX2D_INCLUDE_DIRS "${CMAKE_CURRENT_LIST_DIR}/Box2D/Box2D")
# Support both 32 and 64 bit builds
if (${CMAKE_SIZEOF_VOID_P} MATCHES 8)
else ()
set(BOX2D_DLL "${CMAKE_CURRENT_LIST_DIR}/Box2D/Build/Box2D/Release/Box2D.dll")
set(BOX2D_LIBRARIES "${CMAKE_CURRENT_LIST_DIR}/Box2D/Build/Box2D/Release/Box2D.lib")
endif ()
string(STRIP "${BOX2D_LIBRARIES}" BOX2D_LIBRARIES)