more improvements for msvc cmake build system and test for autogenerated cmake projectfiles for msvc 2008 in msvc/2008 (with relative paths)
This commit is contained in:
@@ -13,8 +13,51 @@ ENDIF (NOT CMAKE_BUILD_TYPE)
|
||||
|
||||
OPTION(USE_DOUBLE_PRECISION "Use double precision" OFF)
|
||||
OPTION(USE_GRAPHICAL_BENCHMARK "Use Graphical Benchmark" OFF)
|
||||
OPTION(USE_MSVC_RUNTIME_LIBRARY_DLL "Use MSVC Runtime Library DLL (/MD or /MDd)" ON)
|
||||
OPTION(USE_MSVC_INCREMENTAL_LINKING "Use MSVC Incremental Linking" ON)
|
||||
|
||||
|
||||
|
||||
#SET(CMAKE_EXE_LINKER_FLAGS_INIT "/STACK:10000000 /INCREMENTAL:NO")
|
||||
#SET(CMAKE_EXE_LINKER_FLAGS "/STACK:10000000 /INCREMENTAL:NO")
|
||||
|
||||
|
||||
IF(MSVC)
|
||||
IF (NOT USE_MSVC_INCREMENTAL_LINKING)
|
||||
IF (CMAKE_EXE_LINKER_FLAGS_DEBUG)
|
||||
STRING(REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags ${CMAKE_EXE_LINKER_FLAGS_DEBUG})
|
||||
message (${replacementFlags})
|
||||
SET(CMAKE_SHARED_LINKER_FLAGS_DEBUG ${replacementFlags})
|
||||
|
||||
|
||||
STRING(REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags2 ${CMAKE_EXE_LINKER_FLAGS})
|
||||
message (${replacementFlags2})
|
||||
SET(CMAKE_EXE_LINKER_FLAGS ${replacementFlag2})
|
||||
|
||||
# STRING(REPLACE "INCREMENTAL:YES" "" replacementFlags3 ${CMAKE_EXTRA_LINK_FLAGS})
|
||||
# SET(CMAKE_EXTRA_LINK_FLAGS ${replacementFlag3})
|
||||
|
||||
|
||||
|
||||
# STRING(REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags1 ${CMAKE_SHARED_LINKER_FLAGS_DEBUG})
|
||||
# SET(CMAKE_SHARED_LINKER_FLAGS_DEBUG ${replacementFlags1})
|
||||
# STRING(REPLACE "INCREMENTAL:YES" "INCREMENTAL:NO" replacementFlags2 ${CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO})
|
||||
# SET(CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO ${replacementFlags2})
|
||||
ENDIF (CMAKE_EXE_LINKER_FLAGS_DEBUG)
|
||||
ENDIF (NOT USE_MSVC_INCREMENTAL_LINKING)
|
||||
|
||||
IF (NOT USE_MSVC_RUNTIME_LIBRARY_DLL)
|
||||
#We statically link to reduce dependancies
|
||||
FOREACH(flag_var CMAKE_CXX_FLAGS CMAKE_CXX_FLAGS_DEBUG CMAKE_CXX_FLAGS_RELEASE CMAKE_CXX_FLAGS_MINSIZEREL CMAKE_CXX_FLAGS_RELWITHDEBINFO)
|
||||
IF(${flag_var} MATCHES "/MD")
|
||||
STRING(REGEX REPLACE "/MD" "/MT" ${flag_var} "${${flag_var}}")
|
||||
ENDIF(${flag_var} MATCHES "/MD")
|
||||
IF(${flag_var} MATCHES "/MDd")
|
||||
STRING(REGEX REPLACE "/MDd" "/MTd" ${flag_var} "${${flag_var}}")
|
||||
ENDIF(${flag_var} MATCHES "/MDd")
|
||||
ENDFOREACH(flag_var)
|
||||
ENDIF (NOT USE_MSVC_RUNTIME_LIBRARY_DLL)
|
||||
|
||||
OPTION(USE_MSVC_SSE "Use MSVC /arch:sse option" ON)
|
||||
IF (USE_MSVC_SSE)
|
||||
ADD_DEFINITIONS(/arch:SSE)
|
||||
@@ -25,14 +68,22 @@ IF(MSVC)
|
||||
ENDIF()
|
||||
ENDIF(MSVC)
|
||||
|
||||
|
||||
|
||||
IF (WIN32)
|
||||
OPTION(INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES "Create MSVC projectfiles that can be distributed" OFF)
|
||||
|
||||
IF (INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${BULLET_PHYSICS_SOURCE_DIR})
|
||||
SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${BULLET_PHYSICS_SOURCE_DIR})
|
||||
SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEASE ${BULLET_PHYSICS_SOURCE_DIR})
|
||||
SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${BULLET_PHYSICS_SOURCE_DIR})
|
||||
SET( CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${BULLET_PHYSICS_SOURCE_DIR})
|
||||
ENDIF()
|
||||
|
||||
OPTION(INTERNAL_CREATE_MSVC_RELATIVE_PATH_PROJECTFILES "Create MSVC projectfiles with relative paths" OFF)
|
||||
OPTION(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES "Add MSVC postfix for executable names (_Debug)" OFF)
|
||||
|
||||
|
||||
IF (INTERNAL_CREATE_MSVC_RELATIVE_PATH_PROJECTFILES)
|
||||
SET(CMAKE_SUPPRESS_REGENERATION 1)
|
||||
|
||||
@@ -79,4 +79,11 @@ IF (WIN32)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_MSVC_RELATIVE_PATH_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppAllBulletDemos PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppAllBulletDemos PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppAllBulletDemos PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
|
||||
@@ -39,6 +39,7 @@ ENDIF()
|
||||
|
||||
|
||||
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -56,10 +57,11 @@ ENDIF()
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
ENDIF(WIN32)
|
||||
ELSE (USE_GLUT)
|
||||
|
||||
|
||||
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
@@ -76,4 +78,10 @@ ELSE (USE_GLUT)
|
||||
)
|
||||
|
||||
|
||||
ENDIF (USE_GLUT)
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppBasicDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppBasicDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppBasicDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -48,6 +48,12 @@ IF (USE_GLUT)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_MSVC_RELATIVE_PATH_PROJECTFILES)
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppBenchmarks PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppBenchmarks PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppBenchmarks PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
|
||||
ENDIF(WIN32)
|
||||
ELSE (USE_GLUT)
|
||||
INCLUDE_DIRECTORIES(
|
||||
|
||||
@@ -50,6 +50,7 @@ IF (USE_GLUT)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
ENDIF(WIN32)
|
||||
ELSE (USE_GLUT)
|
||||
LINK_LIBRARIES(
|
||||
@@ -66,3 +67,9 @@ ELSE (USE_GLUT)
|
||||
)
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppBox2dDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppBox2dDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppBox2dDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
|
||||
|
||||
@@ -1,29 +1,29 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppBspPhysicsDemo
|
||||
main.cpp
|
||||
BspDemo.cpp
|
||||
BspLoader.cpp
|
||||
BspConverter.cpp
|
||||
)
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppBspPhysicsDemo
|
||||
main.cpp
|
||||
BspDemo.cpp
|
||||
BspLoader.cpp
|
||||
BspConverter.cpp
|
||||
)
|
||||
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
@@ -42,13 +42,19 @@ IF (WIN32)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
TARGET AppBspPhysicsDemo
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${BULLET_PHYSICS_SOURCE_DIR}/BspDemo.bsp ${CMAKE_CURRENT_BINARY_DIR}
|
||||
)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
|
||||
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
TARGET AppBspPhysicsDemo
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${BULLET_PHYSICS_SOURCE_DIR}/BspDemo.bsp ${CMAKE_CURRENT_BINARY_DIR}
|
||||
)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppBspPhysicsDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppBspPhysicsDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppBspPhysicsDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,37 +1,37 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppCcdPhysicsDemo
|
||||
main.cpp
|
||||
CcdPhysicsDemo.cpp
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppCcdPhysicsDemo
|
||||
main.cpp
|
||||
CcdPhysicsDemo.cpp
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppCcdPhysicsDemo
|
||||
main.cpp
|
||||
CcdPhysicsDemo.cpp
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppCcdPhysicsDemo
|
||||
main.cpp
|
||||
CcdPhysicsDemo.cpp
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -48,4 +48,10 @@ IF (WIN32)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppCcdPhysicsDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppCcdPhysicsDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppCcdPhysicsDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,45 +1,45 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
SET(CharacterDemo_SRCS
|
||||
|
||||
DynamicCharacterController.cpp
|
||||
DynamicCharacterController.h
|
||||
CharacterDemo.cpp
|
||||
CharacterDemo.h
|
||||
../BspDemo/BspConverter.cpp
|
||||
../BspDemo/BspConverter.h
|
||||
../BspDemo/BspLoader.cpp
|
||||
../BspDemo/BspLoader.h
|
||||
main.cpp
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppCharacterDemo
|
||||
${CharacterDemo_SRCS}
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppCharacterDemo
|
||||
${CharacterDemo_SRCS}
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
SET(CharacterDemo_SRCS
|
||||
|
||||
DynamicCharacterController.cpp
|
||||
DynamicCharacterController.h
|
||||
CharacterDemo.cpp
|
||||
CharacterDemo.h
|
||||
../BspDemo/BspConverter.cpp
|
||||
../BspDemo/BspConverter.h
|
||||
../BspDemo/BspLoader.cpp
|
||||
../BspDemo/BspLoader.h
|
||||
main.cpp
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppCharacterDemo
|
||||
${CharacterDemo_SRCS}
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppCharacterDemo
|
||||
${CharacterDemo_SRCS}
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -58,10 +58,18 @@ IF (WIN32)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
TARGET AppCharacterDemo
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${BULLET_PHYSICS_SOURCE_DIR}/BspDemo.bsp ${CMAKE_CURRENT_BINARY_DIR}
|
||||
)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ADD_CUSTOM_COMMAND(
|
||||
TARGET AppCharacterDemo
|
||||
POST_BUILD
|
||||
COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${BULLET_PHYSICS_SOURCE_DIR}/BspDemo.bsp ${CMAKE_CURRENT_BINARY_DIR}
|
||||
)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppCharacterDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppCharacterDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppCharacterDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
|
||||
@@ -29,3 +29,8 @@ ELSE()
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppCollisionDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppCollisionDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppCollisionDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -69,3 +69,9 @@ ELSE (USE_GLUT)
|
||||
)
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppCollisionInterfaceDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppCollisionInterfaceDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppCollisionInterfaceDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -39,4 +39,10 @@ IF (WIN32)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppConcaveConvexCastDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppConcaveConvexCastDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppConcaveConvexCastDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -68,3 +68,8 @@ ELSE (USE_GLUT)
|
||||
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppConcaveDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppConcaveDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppConcaveDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -31,3 +31,9 @@ ELSE()
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppConcaveRayCastDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppConcaveRayCastDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppConcaveRayCastDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,34 +1,34 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/Extras/Serialize/BulletFileLoader
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/Extras/Serialize/BulletWorldImporter
|
||||
)
|
||||
|
||||
|
||||
IF (USE_GLUT)
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletWorldImporter BulletDynamics BulletCollision LinearMath BulletFileLoader ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppConstraintDemo
|
||||
ConstraintDemo.cpp
|
||||
ConstraintDemo.h
|
||||
main.cpp
|
||||
)
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/Extras/Serialize/BulletFileLoader
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/Extras/Serialize/BulletWorldImporter
|
||||
)
|
||||
|
||||
|
||||
IF (USE_GLUT)
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletWorldImporter BulletDynamics BulletCollision LinearMath BulletFileLoader ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppConstraintDemo
|
||||
ConstraintDemo.cpp
|
||||
ConstraintDemo.h
|
||||
main.cpp
|
||||
)
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -45,17 +45,25 @@ IF (USE_GLUT)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
ELSE (USE_GLUT)
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletWorldImporter BulletDynamics BulletCollision LinearMath BulletFileLoader ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppConstraintDemo
|
||||
WIN32
|
||||
../OpenGL/Win32AppMain.cpp
|
||||
Win32ConstraintDemo.cpp
|
||||
ConstraintDemo.cpp
|
||||
ConstraintDemo.h
|
||||
)
|
||||
ENDIF (USE_GLUT)
|
||||
ENDIF(WIN32)
|
||||
ELSE (USE_GLUT)
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletWorldImporter BulletDynamics BulletCollision LinearMath BulletFileLoader ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppConstraintDemo
|
||||
WIN32
|
||||
../OpenGL/Win32AppMain.cpp
|
||||
Win32ConstraintDemo.cpp
|
||||
ConstraintDemo.cpp
|
||||
ConstraintDemo.h
|
||||
)
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppConstraintDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppConstraintDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppConstraintDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -38,4 +38,10 @@ IF (WIN32)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppContinuousConvexCollisionDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppContinuousConvexCollisionDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppContinuousConvexCollisionDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -72,3 +72,11 @@ IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
COMMAND ${CMAKE_COMMAND} ARGS -E copy_if_different ${BULLET_PHYSICS_SOURCE_DIR}/file.obj ${CMAKE_CURRENT_BINARY_DIR}
|
||||
)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppConvexDecompositionDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppConvexDecompositionDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppConvexDecompositionDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -39,3 +39,11 @@ IF (WIN32)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppDoublePrecisionDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppDoublePrecisionDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppDoublePrecisionDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -40,3 +40,10 @@ IF (WIN32)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppMotorDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppMotorDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppMotorDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,31 +1,31 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# This is the variable for Windows. I use this to define the root of my directory structure.
|
||||
SET(GLUT_ROOT ${BULLET_PHYSICS_SOURCE_DIR}/Glut)
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppForkLiftDemo
|
||||
ForkLiftDemo.cpp
|
||||
main.cpp
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# This is the variable for Windows. I use this to define the root of my directory structure.
|
||||
SET(GLUT_ROOT ${BULLET_PHYSICS_SOURCE_DIR}/Glut)
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppForkLiftDemo
|
||||
ForkLiftDemo.cpp
|
||||
main.cpp
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -42,12 +42,18 @@ IF (WIN32)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppForkLiftDemo
|
||||
ForkLiftDemo.cpp
|
||||
main.cpp
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
ENDIF(WIN32)
|
||||
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppForkLiftDemo
|
||||
ForkLiftDemo.cpp
|
||||
main.cpp
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppForkLiftDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppForkLiftDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppForkLiftDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -73,4 +73,10 @@ ELSE(USE_GLUT)
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
|
||||
)
|
||||
ENDIF (USE_GLUT)
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppGenericJointDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppGenericJointDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppGenericJointDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -40,3 +40,9 @@ IF (WIN32)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppLinearConvexCastDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppLinearConvexCastDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppLinearConvexCastDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -19,3 +19,11 @@ ELSE()
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppHelloWorld PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppHelloWorld PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppHelloWorld PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -60,3 +60,10 @@ ELSE (USE_GLUT)
|
||||
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppInternalEdgeDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppInternalEdgeDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppInternalEdgeDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -12,41 +12,6 @@ SET(GLUT_ROOT ${BULLET_PHYSICS_SOURCE_DIR}/Glut)
|
||||
########################################################
|
||||
|
||||
|
||||
# This is the shortcut to finding GLU, GLUT and OpenGL if they are properly installed on your system
|
||||
# This should be the case.
|
||||
INCLUDE (${CMAKE_ROOT}/Modules/FindGLU.cmake)
|
||||
INCLUDE (${CMAKE_ROOT}/Modules/FindGLUT.cmake)
|
||||
INCLUDE (${CMAKE_ROOT}/Modules/FindOpenGL.cmake)
|
||||
|
||||
|
||||
IF (WIN32)
|
||||
# This is the Windows code for which Opengl, and Glut are not properly installed
|
||||
# since I can't install them I must cheat and copy libraries around
|
||||
INCLUDE_DIRECTORIES(${GLUT_ROOT})
|
||||
# LINK_DIRECTORIES(${GLUT_ROOT}\\lib)
|
||||
IF (${GLUT_glut_LIBRARY} MATCHES "GLUT_glut_LIBRARY-NOTFOUND")
|
||||
SET(GLUT_glut_LIBRARY ${BULLET_PHYSICS_SOURCE_DIR}/Glut/glut32.lib)
|
||||
# LINK_LIBRARIES(${GLUT_ROOT}\\lib\\glut32 ${OPENGL_gl_LIBRARY} ${OPENGL_glU_LIBRARY})
|
||||
# TARGET_LINK_LIBRARIES(table ${GLUT_ROOT}\\lib\\glut32)
|
||||
#
|
||||
# ADD_CUSTOM_COMMAND(TARGET table POST_BUILD COMMAND copy ${GLUT_ROOT}\\lib\\glut32.dll ${GLUT_ROOT}\\bin\\vs2005\\Debug
|
||||
# COMMAND copy ${GLUT_ROOT}\\lib\\glut32.dll ${GLUT_ROOT}\\bin\\vs2003\\Debug
|
||||
# COMMAND copy ${GLUT_ROOT}\\lib\\glut32.dll ${GLUT_ROOT}\\bin\\vs6\\Debug)
|
||||
ELSE (${GLUT_glut_LIBRARY} MATCHES "GLUT_glut_LIBRARY-NOTFOUND")
|
||||
# LINK_LIBRARIES(${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glU_LIBRARY})
|
||||
# TARGET_LINK_LIBRARIES(table ${GLUT_glut_LIBRARY})
|
||||
ENDIF(${GLUT_glut_LIBRARY} MATCHES "GLUT_glut_LIBRARY-NOTFOUND")
|
||||
# TARGET_LINK_LIBRARIES(table ${OPENGL_gl_LIBRARY})
|
||||
# TARGET_LINK_LIBRARIES(table ${OPENGL_glu_LIBRARY})
|
||||
ELSE (WIN32)
|
||||
# This is the lines for linux. This should always work if everything is installed and working fine.
|
||||
# SET(CMAKE_BUILD_TYPE Debug)
|
||||
# SET(CMAKE_CXX_FLAGS_DEBUG "-g")
|
||||
INCLUDE_DIRECTORIES(/usr/include /usr/local/include ${GLUT_INCLUDE_DIR})
|
||||
# TARGET_LINK_LIBRARIES(table ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glU_LIBRARY})
|
||||
# TARGET_LINK_LIBRARIES(checker ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glU_LIBRARY})
|
||||
ENDIF (WIN32)
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
@@ -59,3 +24,9 @@ ADD_EXECUTABLE(AppMovingConcaveDemo
|
||||
ConcavePhysicsDemo.cpp
|
||||
)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppMovingConcaveDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppMovingConcaveDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppMovingConcaveDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -23,3 +23,9 @@ ADD_EXECUTABLE(AppMultiMaterialDemo
|
||||
main.cpp
|
||||
)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppMultiMaterialDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppMultiMaterialDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppMultiMaterialDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -27,3 +27,9 @@ IF (UNIX)
|
||||
TARGET_LINK_LIBRARIES(AppMultiThreadedDemo pthread)
|
||||
ENDIF(UNIX)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppMultiThreadedDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppMultiThreadedDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppMultiThreadedDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,28 +1,28 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppRagdollDemo
|
||||
RagdollDemo.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppRagdollDemo
|
||||
RagdollDemo.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -39,4 +39,11 @@ IF (WIN32)
|
||||
)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppRagdollDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppRagdollDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppRagdollDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -23,3 +23,11 @@ ADD_EXECUTABLE(AppRaytracer
|
||||
main.cpp
|
||||
)
|
||||
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppRaytracer PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppRaytracer PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppRaytracer PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -80,3 +80,10 @@ IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
####### COMMAND copy /Y \"${BULLET_PHYSICS_SOURCE_DIR}/Demos/SerializeDemo/testFile.bullet\" \"${CMAKE_CURRENT_BINARY_DIR}\"
|
||||
)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppSerializeDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppSerializeDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppSerializeDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -39,3 +39,10 @@ IF (WIN32)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppSimplexDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppSimplexDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppSimplexDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,29 +1,29 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppSliderConstraintDemo
|
||||
SliderConstraintDemo.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
ADD_EXECUTABLE(AppSliderConstraintDemo
|
||||
SliderConstraintDemo.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -41,3 +41,11 @@ IF (WIN32)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppSliderConstraintDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppSliderConstraintDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppSliderConstraintDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -1,39 +1,39 @@
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
IF (USE_GLUT)
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletSoftBody BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppSoftBodyDemo
|
||||
main.cpp
|
||||
SoftDemo.cpp
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppSoftBodyDemo
|
||||
main.cpp
|
||||
SoftDemo.cpp
|
||||
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
# This is basically the overall name of the project in Visual Studio this is the name of the Solution File
|
||||
|
||||
|
||||
# For every executable you have with a main method you should have an add_executable line below.
|
||||
# For every add executable line you should list every .cpp and .h file you have associated with that executable.
|
||||
|
||||
|
||||
|
||||
|
||||
# You shouldn't have to modify anything below this line
|
||||
########################################################
|
||||
|
||||
IF (USE_GLUT)
|
||||
|
||||
INCLUDE_DIRECTORIES(
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/src ${BULLET_PHYSICS_SOURCE_DIR}/Demos/OpenGL
|
||||
)
|
||||
|
||||
LINK_LIBRARIES(
|
||||
OpenGLSupport BulletSoftBody BulletDynamics BulletCollision LinearMath ${GLUT_glut_LIBRARY} ${OPENGL_gl_LIBRARY} ${OPENGL_glu_LIBRARY}
|
||||
)
|
||||
|
||||
IF (WIN32)
|
||||
ADD_EXECUTABLE(AppSoftBodyDemo
|
||||
main.cpp
|
||||
SoftDemo.cpp
|
||||
${BULLET_PHYSICS_SOURCE_DIR}/msvc/bullet.rc
|
||||
)
|
||||
ELSE()
|
||||
ADD_EXECUTABLE(AppSoftBodyDemo
|
||||
main.cpp
|
||||
SoftDemo.cpp
|
||||
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
IF (WIN32)
|
||||
IF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
IF (CMAKE_CL_64)
|
||||
@@ -51,8 +51,14 @@ IF (USE_GLUT)
|
||||
ENDIF(CMAKE_CL_64)
|
||||
ENDIF (NOT INTERNAL_CREATE_DISTRIBUTABLE_MSVC_PROJECTFILES)
|
||||
ENDIF(WIN32)
|
||||
|
||||
|
||||
ELSE(USE_GLUT)
|
||||
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
|
||||
ELSE(USE_GLUT)
|
||||
|
||||
ENDIF (USE_GLUT)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppSoftBodyDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppSoftBodyDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppSoftBodyDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -29,3 +29,10 @@ ELSE()
|
||||
UserCollisionAlgorithm.cpp
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppUserCollisionAlgorithm PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppUserCollisionAlgorithm PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppUserCollisionAlgorithm PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
@@ -24,3 +24,8 @@ ADD_EXECUTABLE(AppVehicleDemo
|
||||
main.cpp
|
||||
)
|
||||
|
||||
IF (INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
SET_TARGET_PROPERTIES(AppVehicleDemo PROPERTIES DEBUG_POSTFIX "_Debug")
|
||||
SET_TARGET_PROPERTIES(AppVehicleDemo PROPERTIES MINSIZEREL_POSTFIX "_MinsizeRel")
|
||||
SET_TARGET_PROPERTIES(AppVehicleDemo PROPERTIES RELWITHDEBINFO_POSTFIX "_RelWithDebugInfo")
|
||||
ENDIF(INTERNAL_ADD_POSTFIX_EXECUTABLE_NAMES)
|
||||
692
msvc/2008/BULLET_PHYSICS.sln
Normal file
692
msvc/2008/BULLET_PHYSICS.sln
Normal file
@@ -0,0 +1,692 @@
|
||||
Microsoft Visual Studio Solution File, Format Version 10.00
|
||||
# Visual Studio 2008
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppAllBulletDemos", "Demos\AllBulletDemos\AppAllBulletDemos.vcproj", "{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD} = {CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45} = {850CC1F0-33C1-4D5F-8B88-C13809D50E45}
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF} = {5BCB449C-58B6-4D0E-834C-727E1612D0DF}
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2} = {E8799A4A-3157-4046-ABBB-91C7C58619D2}
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A} = {724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92} = {AB19CEC4-F09A-4864-94AA-ECAD14095D92}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppBasicDemo", "Demos\BasicDemo\AppBasicDemo.vcproj", "{4222F435-B853-4146-955B-1494611C5DBB}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppBenchmarks", "Demos\Benchmarks\AppBenchmarks.vcproj", "{A7052088-2F19-4F3B-8955-24E475F3776C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppBox2dDemo", "Demos\Box2dDemo\AppBox2dDemo.vcproj", "{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppBspPhysicsDemo", "Demos\BspDemo\AppBspPhysicsDemo.vcproj", "{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppCcdPhysicsDemo", "Demos\CcdPhysicsDemo\AppCcdPhysicsDemo.vcproj", "{402A7D44-2BFD-40A7-B83B-48C4A58B305D}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppCharacterDemo", "Demos\CharacterDemo\AppCharacterDemo.vcproj", "{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppCollisionDemo", "Demos\CollisionDemo\AppCollisionDemo.vcproj", "{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppCollisionInterfaceDemo", "Demos\CollisionInterfaceDemo\AppCollisionInterfaceDemo.vcproj", "{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppConcaveConvexCastDemo", "Demos\ConcaveConvexcastDemo\AppConcaveConvexCastDemo.vcproj", "{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppConcaveDemo", "Demos\ConcaveDemo\AppConcaveDemo.vcproj", "{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppConcaveRayCastDemo", "Demos\ConcaveRaycastDemo\AppConcaveRayCastDemo.vcproj", "{B8F4B279-E534-4972-B0F6-7A19017FF5AF}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppConstraintDemo", "Demos\ConstraintDemo\AppConstraintDemo.vcproj", "{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2} = {E8799A4A-3157-4046-ABBB-91C7C58619D2}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92} = {AB19CEC4-F09A-4864-94AA-ECAD14095D92}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppContinuousConvexCollisionDemo", "Demos\ContinuousConvexCollision\AppContinuousConvexCollisionDemo.vcproj", "{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppConvexDecompositionDemo", "Demos\ConvexDecompositionDemo\AppConvexDecompositionDemo.vcproj", "{96DC7589-39FF-4438-A519-61ED5880A77A}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2} = {E8799A4A-3157-4046-ABBB-91C7C58619D2}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92} = {AB19CEC4-F09A-4864-94AA-ECAD14095D92}
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF} = {5BCB449C-58B6-4D0E-834C-727E1612D0DF}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppDoublePrecisionDemo", "Demos\DoublePrecisionDemo\AppDoublePrecisionDemo.vcproj", "{0B8243CE-148A-490C-98C7-2AAE53B255C3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppForkLiftDemo", "Demos\ForkLiftDemo\AppForkLiftDemo.vcproj", "{7FE724F9-B760-496E-B3AA-21B73FEFECE3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppGenericJointDemo", "Demos\GenericJointDemo\AppGenericJointDemo.vcproj", "{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppHelloWorld", "Demos\HelloWorld\AppHelloWorld.vcproj", "{54133B06-88EE-4688-B33A-006CF79AEFA3}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppInternalEdgeDemo", "Demos\InternalEdgeDemo\AppInternalEdgeDemo.vcproj", "{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppLinearConvexCastDemo", "Demos\GjkConvexCastDemo\AppLinearConvexCastDemo.vcproj", "{D8527DE7-652F-499A-84A4-2D3656C37BB0}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppMotorDemo", "Demos\DynamicControlDemo\AppMotorDemo.vcproj", "{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppMovingConcaveDemo", "Demos\MovingConcaveDemo\AppMovingConcaveDemo.vcproj", "{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppMultiMaterialDemo", "Demos\MultiMaterialDemo\AppMultiMaterialDemo.vcproj", "{820D475C-FDEE-4B57-B350-6DE5A31077A4}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppMultiThreadedDemo", "Demos\MultiThreadedDemo\AppMultiThreadedDemo.vcproj", "{1D28E75B-C32E-4341-A16E-A23BD6138132}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859} = {7758C4A0-38E3-4E5C-BE86-1A4C50E55859}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppRagdollDemo", "Demos\RagdollDemo\AppRagdollDemo.vcproj", "{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppRaytracer", "Demos\Raytracer\AppRaytracer.vcproj", "{DC62613F-234B-4A42-9640-370238EEC71C}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppSerializeDemo", "Demos\SerializeDemo\AppSerializeDemo.vcproj", "{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2} = {E8799A4A-3157-4046-ABBB-91C7C58619D2}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92} = {AB19CEC4-F09A-4864-94AA-ECAD14095D92}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppSimplexDemo", "Demos\SimplexDemo\AppSimplexDemo.vcproj", "{844E6A1F-A432-40F0-AC5E-F167CFFB9705}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppSliderConstraintDemo", "Demos\SliderConstraintDemo\AppSliderConstraintDemo.vcproj", "{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppSoftBodyDemo", "Demos\SoftDemo\AppSoftBodyDemo.vcproj", "{F7A14390-DCFF-4984-8A73-DBBBDB54830B}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A} = {724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppUserCollisionAlgorithm", "Demos\UserCollisionAlgorithm\AppUserCollisionAlgorithm.vcproj", "{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AppVehicleDemo", "Demos\VehicleDemo\AppVehicleDemo.vcproj", "{89FF4293-CDC8-4007-9625-271996AC50D5}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BulletCollision", "src\BulletCollision\BulletCollision.vcproj", "{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BulletDynamics", "src\BulletDynamics\BulletDynamics.vcproj", "{A293324D-7176-42A6-9961-F9093B76D5A1}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BulletFileLoader", "Extras\Serialize\BulletFileLoader\BulletFileLoader.vcproj", "{AB19CEC4-F09A-4864-94AA-ECAD14095D92}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BulletMultiThreaded", "src\BulletMultiThreaded\BulletMultiThreaded.vcproj", "{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BulletSoftBody", "src\BulletSoftBody\BulletSoftBody.vcproj", "{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "BulletWorldImporter", "Extras\Serialize\BulletWorldImporter\BulletWorldImporter.vcproj", "{E8799A4A-3157-4046-ABBB-91C7C58619D2}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ConvexDecomposition", "Extras\ConvexDecomposition\ConvexDecomposition.vcproj", "{5BCB449C-58B6-4D0E-834C-727E1612D0DF}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GIMPACTUtils", "Extras\GIMPACTUtils\GIMPACTUtils.vcproj", "{850CC1F0-33C1-4D5F-8B88-C13809D50E45}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "GLUI", "Extras\glui\GLUI.vcproj", "{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "HfFluidDemo", "Demos\HeightFieldFluidDemo\HfFluidDemo.vcproj", "{C80A148B-085D-4A54-B3FD-66E3DA868AA2}"
|
||||
ProjectSection(ProjectDependencies) = postProject
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5} = {0DAC15EA-880D-4172-B6F3-351FD39B2BA5}
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1} = {A293324D-7176-42A6-9961-F9093B76D5A1}
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C} = {72A81C80-79FC-4511-B7E1-BBCEE0142B2C}
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523} = {BECCF265-AD5E-48F1-BC48-FAF356724523}
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "LinearMath", "src\LinearMath\LinearMath.vcproj", "{BECCF265-AD5E-48F1-BC48-FAF356724523}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "OpenGLSupport", "Demos\OpenGL\OpenGLSupport.vcproj", "{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}"
|
||||
EndProject
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "XML", "Extras\LibXML\XML.vcproj", "{A08184C7-0F15-4AD6-AFDE-3950BBACB923}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
MinSizeRel|Win32 = MinSizeRel|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
RelWithDebInfo|Win32 = RelWithDebInfo|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.Release|Win32.Build.0 = Release|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.Release|Win32.Build.0 = Release|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{4222F435-B853-4146-955B-1494611C5DBB}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.Release|Win32.Build.0 = Release|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{A7052088-2F19-4F3B-8955-24E475F3776C}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.Release|Win32.Build.0 = Release|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.Release|Win32.Build.0 = Release|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.Release|Win32.Build.0 = Release|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{402A7D44-2BFD-40A7-B83B-48C4A58B305D}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.Release|Win32.Build.0 = Release|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.Release|Win32.Build.0 = Release|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.Release|Win32.Build.0 = Release|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.Release|Win32.Build.0 = Release|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.Release|Win32.Build.0 = Release|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.Release|Win32.Build.0 = Release|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{B8F4B279-E534-4972-B0F6-7A19017FF5AF}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.Release|Win32.Build.0 = Release|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.Release|Win32.Build.0 = Release|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.Release|Win32.Build.0 = Release|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{96DC7589-39FF-4438-A519-61ED5880A77A}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.Release|Win32.Build.0 = Release|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{0B8243CE-148A-490C-98C7-2AAE53B255C3}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.Release|Win32.Build.0 = Release|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{7FE724F9-B760-496E-B3AA-21B73FEFECE3}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.Release|Win32.Build.0 = Release|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.Release|Win32.Build.0 = Release|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{54133B06-88EE-4688-B33A-006CF79AEFA3}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.Release|Win32.Build.0 = Release|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.Release|Win32.Build.0 = Release|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{D8527DE7-652F-499A-84A4-2D3656C37BB0}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.Release|Win32.Build.0 = Release|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.Release|Win32.Build.0 = Release|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.Release|Win32.Build.0 = Release|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{820D475C-FDEE-4B57-B350-6DE5A31077A4}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.Release|Win32.Build.0 = Release|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{1D28E75B-C32E-4341-A16E-A23BD6138132}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.Release|Win32.Build.0 = Release|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.Release|Win32.Build.0 = Release|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{DC62613F-234B-4A42-9640-370238EEC71C}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.Release|Win32.Build.0 = Release|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.Release|Win32.Build.0 = Release|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{844E6A1F-A432-40F0-AC5E-F167CFFB9705}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.Release|Win32.Build.0 = Release|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.Release|Win32.Build.0 = Release|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{F7A14390-DCFF-4984-8A73-DBBBDB54830B}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.Release|Win32.Build.0 = Release|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.Release|Win32.Build.0 = Release|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{89FF4293-CDC8-4007-9625-271996AC50D5}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.Release|Win32.Build.0 = Release|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.Release|Win32.Build.0 = Release|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{A293324D-7176-42A6-9961-F9093B76D5A1}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.Release|Win32.Build.0 = Release|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{AB19CEC4-F09A-4864-94AA-ECAD14095D92}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.Release|Win32.Build.0 = Release|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.Release|Win32.Build.0 = Release|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.Release|Win32.Build.0 = Release|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{E8799A4A-3157-4046-ABBB-91C7C58619D2}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.Release|Win32.Build.0 = Release|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{5BCB449C-58B6-4D0E-834C-727E1612D0DF}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.Release|Win32.Build.0 = Release|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{850CC1F0-33C1-4D5F-8B88-C13809D50E45}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.Release|Win32.Build.0 = Release|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.Release|Win32.Build.0 = Release|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{C80A148B-085D-4A54-B3FD-66E3DA868AA2}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.Release|Win32.Build.0 = Release|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{BECCF265-AD5E-48F1-BC48-FAF356724523}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.Release|Win32.Build.0 = Release|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.MinSizeRel|Win32.ActiveCfg = MinSizeRel|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.MinSizeRel|Win32.Build.0 = MinSizeRel|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.Release|Win32.Build.0 = Release|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.RelWithDebInfo|Win32.ActiveCfg = RelWithDebInfo|Win32
|
||||
{A08184C7-0F15-4AD6-AFDE-3950BBACB923}.RelWithDebInfo|Win32.Build.0 = RelWithDebInfo|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
342
msvc/2008/Demos/AllBulletDemos/AppAllBulletDemos.vcproj
Normal file
342
msvc/2008/Demos/AllBulletDemos/AppAllBulletDemos.vcproj
Normal file
@@ -0,0 +1,342 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppAllBulletDemos"
|
||||
ProjectGUID="{CC10586A-03B6-4BB9-B01A-A9A8CD553AFB}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppAllBulletDemos.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppAllBulletDemos_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/AllBulletDemos/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\Extras\glui\Debug\GLUI.lib ..\..\Extras\GIMPACTUtils\Debug\GIMPACTUtils.lib ..\..\Extras\ConvexDecomposition\Debug\ConvexDecomposition.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Debug\BulletWorldImporter.lib ..\..\src\BulletSoftBody\Debug\BulletSoftBody.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\Extras\Serialize\BulletFileLoader\Debug\BulletFileLoader.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppAllBulletDemos_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="C:\MinGW\lib\$(OutDir),C:\MinGW\lib"
|
||||
ProgramDataBaseFile="..\..\..\../AppAllBulletDemos_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppAllBulletDemos_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppAllBulletDemos.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppAllBulletDemos.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/AllBulletDemos/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\Extras\glui\Release\GLUI.lib ..\..\Extras\GIMPACTUtils\Release\GIMPACTUtils.lib ..\..\Extras\ConvexDecomposition\Release\ConvexDecomposition.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Release\BulletWorldImporter.lib ..\..\src\BulletSoftBody\Release\BulletSoftBody.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\Extras\Serialize\BulletFileLoader\Release\BulletFileLoader.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppAllBulletDemos.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="C:\MinGW\lib\$(OutDir),C:\MinGW\lib"
|
||||
ProgramDataBaseFile="..\..\..\../AppAllBulletDemos.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppAllBulletDemos.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppAllBulletDemos.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppAllBulletDemos_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/AllBulletDemos/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\Extras\glui\MinSizeRel\GLUI.lib ..\..\Extras\GIMPACTUtils\MinSizeRel\GIMPACTUtils.lib ..\..\Extras\ConvexDecomposition\MinSizeRel\ConvexDecomposition.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\MinSizeRel\BulletWorldImporter.lib ..\..\src\BulletSoftBody\MinSizeRel\BulletSoftBody.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\Extras\Serialize\BulletFileLoader\MinSizeRel\BulletFileLoader.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppAllBulletDemos_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories="C:\MinGW\lib\$(OutDir),C:\MinGW\lib"
|
||||
ProgramDataBaseFile="..\..\..\../AppAllBulletDemos_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppAllBulletDemos_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppAllBulletDemos.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppAllBulletDemos_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/AllBulletDemos/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\Extras\glui\RelWithDebInfo\GLUI.lib ..\..\Extras\GIMPACTUtils\RelWithDebInfo\GIMPACTUtils.lib ..\..\Extras\ConvexDecomposition\RelWithDebInfo\ConvexDecomposition.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\RelWithDebInfo\BulletWorldImporter.lib ..\..\src\BulletSoftBody\RelWithDebInfo\BulletSoftBody.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\Extras\Serialize\BulletFileLoader\RelWithDebInfo\BulletFileLoader.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppAllBulletDemos_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories="C:\MinGW\lib\$(OutDir),C:\MinGW\lib"
|
||||
ProgramDataBaseFile="..\..\..\../AppAllBulletDemos_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppAllBulletDemos_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\AllBulletDemos\Main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\AllBulletDemos\DemoEntries.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CcdPhysicsDemo\CcdPhysicsDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BasicDemo\BasicDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspConverter.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspLoader.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\DynamicControlDemo\MotorDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveDemo\ConcavePhysicsDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveRaycastDemo\ConcaveRaycastDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveConvexcastDemo\ConcaveConvexcastDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConvexDecompositionDemo\ConvexDecompositionDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SliderConstraintDemo\SliderConstraintDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\RagdollDemo\RagdollDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GimpactTestDemo\GimpactTestDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Raytracer\Raytracer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GjkConvexCastDemo\LinearConvexCastDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ForkLiftDemo\ForkLiftDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SoftDemo\SoftDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConstraintDemo\ConstraintDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
295
msvc/2008/Demos/BasicDemo/AppBasicDemo.vcproj
Normal file
295
msvc/2008/Demos/BasicDemo/AppBasicDemo.vcproj
Normal file
@@ -0,0 +1,295 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppBasicDemo"
|
||||
ProjectGUID="{4222F435-B853-4146-955B-1494611C5DBB}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppBasicDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBasicDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BasicDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBasicDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBasicDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppBasicDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppBasicDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBasicDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BasicDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBasicDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBasicDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppBasicDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppBasicDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBasicDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BasicDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBasicDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBasicDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppBasicDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppBasicDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBasicDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BasicDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBasicDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBasicDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppBasicDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BasicDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BasicDemo\BasicDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BasicDemo\BasicDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/Benchmarks/AppBenchmarks.vcproj
Normal file
285
msvc/2008/Demos/Benchmarks/AppBenchmarks.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppBenchmarks"
|
||||
ProjectGUID="{A7052088-2F19-4F3B-8955-24E475F3776C}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppBenchmarks.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBenchmarks.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Benchmarks/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppBenchmarks.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBenchmarks.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppBenchmarks.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppBenchmarks.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBenchmarks.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Benchmarks/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppBenchmarks.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBenchmarks.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppBenchmarks.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppBenchmarks.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBenchmarks.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Benchmarks/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppBenchmarks.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBenchmarks.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppBenchmarks.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppBenchmarks.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBenchmarks.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Benchmarks/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppBenchmarks.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBenchmarks.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppBenchmarks.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Benchmarks\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Benchmarks\BenchmarkDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
295
msvc/2008/Demos/Box2dDemo/AppBox2dDemo.vcproj
Normal file
295
msvc/2008/Demos/Box2dDemo/AppBox2dDemo.vcproj
Normal file
@@ -0,0 +1,295 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppBox2dDemo"
|
||||
ProjectGUID="{6DE0F7D6-F93B-4719-8EA1-7005D0BE65D2}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppBox2dDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBox2dDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Box2dDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBox2dDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBox2dDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppBox2dDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppBox2dDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBox2dDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Box2dDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBox2dDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBox2dDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppBox2dDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppBox2dDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBox2dDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Box2dDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBox2dDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBox2dDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppBox2dDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppBox2dDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBox2dDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Box2dDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBox2dDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBox2dDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppBox2dDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Box2dDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Box2dDemo\Box2dDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Box2dDemo\Box2dDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
291
msvc/2008/Demos/BspDemo/AppBspPhysicsDemo.vcproj
Normal file
291
msvc/2008/Demos/BspDemo/AppBspPhysicsDemo.vcproj
Normal file
@@ -0,0 +1,291 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppBspPhysicsDemo"
|
||||
ProjectGUID="{4DF9F423-B00D-4840-93EC-6DBD62DE90E8}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppBspPhysicsDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBspPhysicsDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BspDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBspPhysicsDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBspPhysicsDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppBspPhysicsDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppBspPhysicsDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBspPhysicsDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BspDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBspPhysicsDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBspPhysicsDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppBspPhysicsDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppBspPhysicsDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBspPhysicsDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BspDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBspPhysicsDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBspPhysicsDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppBspPhysicsDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppBspPhysicsDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppBspPhysicsDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/BspDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppBspPhysicsDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppBspPhysicsDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppBspPhysicsDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspLoader.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspConverter.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
288
msvc/2008/Demos/CcdPhysicsDemo/AppCcdPhysicsDemo.vcproj
Normal file
288
msvc/2008/Demos/CcdPhysicsDemo/AppCcdPhysicsDemo.vcproj
Normal file
@@ -0,0 +1,288 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppCcdPhysicsDemo"
|
||||
ProjectGUID="{402A7D44-2BFD-40A7-B83B-48C4A58B305D}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppCcdPhysicsDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCcdPhysicsDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CcdPhysicsDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCcdPhysicsDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCcdPhysicsDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppCcdPhysicsDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppCcdPhysicsDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCcdPhysicsDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CcdPhysicsDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCcdPhysicsDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCcdPhysicsDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppCcdPhysicsDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppCcdPhysicsDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCcdPhysicsDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CcdPhysicsDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCcdPhysicsDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCcdPhysicsDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppCcdPhysicsDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppCcdPhysicsDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCcdPhysicsDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CcdPhysicsDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCcdPhysicsDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCcdPhysicsDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppCcdPhysicsDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CcdPhysicsDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CcdPhysicsDemo\CcdPhysicsDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
313
msvc/2008/Demos/CharacterDemo/AppCharacterDemo.vcproj
Normal file
313
msvc/2008/Demos/CharacterDemo/AppCharacterDemo.vcproj
Normal file
@@ -0,0 +1,313 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppCharacterDemo"
|
||||
ProjectGUID="{0EB1C2A0-D6BA-4E35-ABBF-42117D375359}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppCharacterDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCharacterDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CharacterDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCharacterDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCharacterDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppCharacterDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppCharacterDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCharacterDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CharacterDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCharacterDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCharacterDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppCharacterDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppCharacterDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCharacterDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CharacterDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCharacterDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCharacterDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppCharacterDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppCharacterDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCharacterDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CharacterDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCharacterDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCharacterDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppCharacterDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CharacterDemo\DynamicCharacterController.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CharacterDemo\CharacterDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspConverter.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspLoader.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CharacterDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CharacterDemo\DynamicCharacterController.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CharacterDemo\CharacterDemo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspConverter.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\BspDemo\BspLoader.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/CollisionDemo/AppCollisionDemo.vcproj
Normal file
285
msvc/2008/Demos/CollisionDemo/AppCollisionDemo.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppCollisionDemo"
|
||||
ProjectGUID="{2E80B1D1-19AB-4E69-BA30-3E58DC014B03}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppCollisionDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppCollisionDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppCollisionDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppCollisionDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppCollisionDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppCollisionDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppCollisionDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppCollisionDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CollisionDemo\CollisionDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,295 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppCollisionInterfaceDemo"
|
||||
ProjectGUID="{29EDF5E2-CB13-4B2F-94B7-9A654D5F04F8}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppCollisionInterfaceDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionInterfaceDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionInterfaceDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionInterfaceDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionInterfaceDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppCollisionInterfaceDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppCollisionInterfaceDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionInterfaceDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionInterfaceDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionInterfaceDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionInterfaceDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppCollisionInterfaceDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppCollisionInterfaceDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionInterfaceDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionInterfaceDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionInterfaceDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionInterfaceDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppCollisionInterfaceDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppCollisionInterfaceDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppCollisionInterfaceDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/CollisionInterfaceDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppCollisionInterfaceDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppCollisionInterfaceDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppCollisionInterfaceDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CollisionInterfaceDemo\CollisionInterfaceDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CollisionInterfaceDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\CollisionInterfaceDemo\CollisionInterfaceDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppConcaveConvexCastDemo"
|
||||
ProjectGUID="{79DC67D2-BF62-4A14-9B63-94B5E08FBB34}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppConcaveConvexCastDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveConvexCastDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveConvexcastDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveConvexCastDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveConvexCastDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppConcaveConvexCastDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppConcaveConvexCastDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveConvexCastDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveConvexcastDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveConvexCastDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveConvexCastDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppConcaveConvexCastDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppConcaveConvexCastDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveConvexCastDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveConvexcastDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveConvexCastDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveConvexCastDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppConcaveConvexCastDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppConcaveConvexCastDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveConvexCastDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveConvexcastDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveConvexCastDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveConvexCastDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppConcaveConvexCastDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveConvexcastDemo\ConcaveConvexcastDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveConvexcastDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
288
msvc/2008/Demos/ConcaveDemo/AppConcaveDemo.vcproj
Normal file
288
msvc/2008/Demos/ConcaveDemo/AppConcaveDemo.vcproj
Normal file
@@ -0,0 +1,288 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppConcaveDemo"
|
||||
ProjectGUID="{0EF1E641-6F0D-4ECE-9803-79CE9FBBA6D3}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppConcaveDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppConcaveDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppConcaveDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppConcaveDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppConcaveDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppConcaveDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppConcaveDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppConcaveDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveDemo\ConcavePhysicsDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
288
msvc/2008/Demos/ConcaveRaycastDemo/AppConcaveRayCastDemo.vcproj
Normal file
288
msvc/2008/Demos/ConcaveRaycastDemo/AppConcaveRayCastDemo.vcproj
Normal file
@@ -0,0 +1,288 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppConcaveRayCastDemo"
|
||||
ProjectGUID="{B8F4B279-E534-4972-B0F6-7A19017FF5AF}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppConcaveRayCastDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveRayCastDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveRaycastDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveRayCastDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveRayCastDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppConcaveRayCastDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppConcaveRayCastDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveRayCastDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveRaycastDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveRayCastDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveRayCastDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppConcaveRayCastDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppConcaveRayCastDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveRayCastDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveRaycastDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveRayCastDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveRayCastDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppConcaveRayCastDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppConcaveRayCastDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConcaveRayCastDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConcaveRaycastDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConcaveRayCastDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConcaveRayCastDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppConcaveRayCastDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveRaycastDemo\ConcaveRaycastDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConcaveRaycastDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
292
msvc/2008/Demos/ConstraintDemo/AppConstraintDemo.vcproj
Normal file
292
msvc/2008/Demos/ConstraintDemo/AppConstraintDemo.vcproj
Normal file
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppConstraintDemo"
|
||||
ProjectGUID="{B8D4F8DE-4553-4BDA-960F-B0A96745D57A}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppConstraintDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConstraintDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConstraintDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Debug\BulletWorldImporter.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\Debug\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConstraintDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConstraintDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppConstraintDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppConstraintDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConstraintDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConstraintDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Release\BulletWorldImporter.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\Release\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConstraintDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConstraintDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppConstraintDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppConstraintDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConstraintDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConstraintDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\MinSizeRel\BulletWorldImporter.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\MinSizeRel\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConstraintDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConstraintDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppConstraintDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppConstraintDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConstraintDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConstraintDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\RelWithDebInfo\BulletWorldImporter.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\RelWithDebInfo\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConstraintDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConstraintDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppConstraintDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConstraintDemo\ConstraintDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConstraintDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConstraintDemo\ConstraintDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,282 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppContinuousConvexCollisionDemo"
|
||||
ProjectGUID="{98EDBCB2-CFCA-4BE8-830D-CEE61F25BC5A}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppContinuousConvexCollisionDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppContinuousConvexCollisionDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ContinuousConvexCollision/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppContinuousConvexCollisionDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppContinuousConvexCollisionDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppContinuousConvexCollisionDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppContinuousConvexCollisionDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppContinuousConvexCollisionDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ContinuousConvexCollision/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppContinuousConvexCollisionDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppContinuousConvexCollisionDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppContinuousConvexCollisionDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppContinuousConvexCollisionDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppContinuousConvexCollisionDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ContinuousConvexCollision/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppContinuousConvexCollisionDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppContinuousConvexCollisionDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppContinuousConvexCollisionDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppContinuousConvexCollisionDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppContinuousConvexCollisionDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ContinuousConvexCollision/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppContinuousConvexCollisionDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppContinuousConvexCollisionDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppContinuousConvexCollisionDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ContinuousConvexCollision\ContinuousConvexCollisionDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppConvexDecompositionDemo"
|
||||
ProjectGUID="{96DC7589-39FF-4438-A519-61ED5880A77A}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppConvexDecompositionDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConvexDecompositionDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConvexDecompositionDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Debug\BulletWorldImporter.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\Debug\BulletFileLoader.lib ..\..\Extras\ConvexDecomposition\Debug\ConvexDecomposition.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConvexDecompositionDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConvexDecompositionDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppConvexDecompositionDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppConvexDecompositionDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConvexDecompositionDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConvexDecompositionDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Release\BulletWorldImporter.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\Release\BulletFileLoader.lib ..\..\Extras\ConvexDecomposition\Release\ConvexDecomposition.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConvexDecompositionDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConvexDecompositionDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppConvexDecompositionDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppConvexDecompositionDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConvexDecompositionDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConvexDecompositionDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\MinSizeRel\BulletWorldImporter.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\MinSizeRel\BulletFileLoader.lib ..\..\Extras\ConvexDecomposition\MinSizeRel\ConvexDecomposition.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConvexDecompositionDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConvexDecompositionDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppConvexDecompositionDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppConvexDecompositionDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppConvexDecompositionDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ConvexDecompositionDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\RelWithDebInfo\BulletWorldImporter.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\RelWithDebInfo\BulletFileLoader.lib ..\..\Extras\ConvexDecomposition\RelWithDebInfo\ConvexDecomposition.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppConvexDecompositionDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppConvexDecompositionDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppConvexDecompositionDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConvexDecompositionDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConvexDecompositionDemo\ConvexDecompositionDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ConvexDecompositionDemo\ConvexDecompositionDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,282 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppDoublePrecisionDemo"
|
||||
ProjectGUID="{0B8243CE-148A-490C-98C7-2AAE53B255C3}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppDoublePrecisionDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppDoublePrecisionDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DoublePrecisionDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppDoublePrecisionDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppDoublePrecisionDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppDoublePrecisionDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppDoublePrecisionDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppDoublePrecisionDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DoublePrecisionDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppDoublePrecisionDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppDoublePrecisionDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppDoublePrecisionDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppDoublePrecisionDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppDoublePrecisionDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DoublePrecisionDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppDoublePrecisionDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppDoublePrecisionDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppDoublePrecisionDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppDoublePrecisionDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppDoublePrecisionDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DoublePrecisionDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppDoublePrecisionDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppDoublePrecisionDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppDoublePrecisionDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\DoublePrecisionDemo\DoublePrecisionDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/DynamicControlDemo/AppMotorDemo.vcproj
Normal file
285
msvc/2008/Demos/DynamicControlDemo/AppMotorDemo.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppMotorDemo"
|
||||
ProjectGUID="{5E2994C1-4849-4EE6-AEE5-CA5EEFAA891E}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppMotorDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMotorDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DynamicControlDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMotorDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMotorDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppMotorDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppMotorDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMotorDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DynamicControlDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMotorDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMotorDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppMotorDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppMotorDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMotorDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DynamicControlDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMotorDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMotorDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppMotorDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppMotorDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMotorDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/DynamicControlDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMotorDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMotorDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppMotorDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\DynamicControlDemo\MotorDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\DynamicControlDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
288
msvc/2008/Demos/ForkLiftDemo/AppForkLiftDemo.vcproj
Normal file
288
msvc/2008/Demos/ForkLiftDemo/AppForkLiftDemo.vcproj
Normal file
@@ -0,0 +1,288 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppForkLiftDemo"
|
||||
ProjectGUID="{7FE724F9-B760-496E-B3AA-21B73FEFECE3}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppForkLiftDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppForkLiftDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ForkLiftDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppForkLiftDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppForkLiftDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppForkLiftDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppForkLiftDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppForkLiftDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ForkLiftDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppForkLiftDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppForkLiftDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppForkLiftDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppForkLiftDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppForkLiftDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ForkLiftDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppForkLiftDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppForkLiftDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppForkLiftDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppForkLiftDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppForkLiftDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/ForkLiftDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppForkLiftDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppForkLiftDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppForkLiftDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ForkLiftDemo\ForkLiftDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\ForkLiftDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
298
msvc/2008/Demos/GenericJointDemo/AppGenericJointDemo.vcproj
Normal file
298
msvc/2008/Demos/GenericJointDemo/AppGenericJointDemo.vcproj
Normal file
@@ -0,0 +1,298 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppGenericJointDemo"
|
||||
ProjectGUID="{427B8B2B-E4AC-431A-8B5F-23FEC48C48D3}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppGenericJointDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppGenericJointDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GenericJointDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppGenericJointDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppGenericJointDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppGenericJointDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppGenericJointDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppGenericJointDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GenericJointDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppGenericJointDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppGenericJointDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppGenericJointDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppGenericJointDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppGenericJointDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GenericJointDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppGenericJointDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppGenericJointDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppGenericJointDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppGenericJointDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppGenericJointDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GenericJointDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppGenericJointDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppGenericJointDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppGenericJointDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GenericJointDemo\GenericJointDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GenericJointDemo\Ragdoll.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GenericJointDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GenericJointDemo\GenericJointDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/GjkConvexCastDemo/AppLinearConvexCastDemo.vcproj
Normal file
285
msvc/2008/Demos/GjkConvexCastDemo/AppLinearConvexCastDemo.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppLinearConvexCastDemo"
|
||||
ProjectGUID="{D8527DE7-652F-499A-84A4-2D3656C37BB0}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppLinearConvexCastDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppLinearConvexCastDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GjkConvexCastDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppLinearConvexCastDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppLinearConvexCastDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppLinearConvexCastDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppLinearConvexCastDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppLinearConvexCastDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GjkConvexCastDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppLinearConvexCastDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppLinearConvexCastDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppLinearConvexCastDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppLinearConvexCastDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppLinearConvexCastDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GjkConvexCastDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppLinearConvexCastDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppLinearConvexCastDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppLinearConvexCastDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppLinearConvexCastDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppLinearConvexCastDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/GjkConvexCastDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppLinearConvexCastDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppLinearConvexCastDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppLinearConvexCastDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GjkConvexCastDemo\LinearConvexCastDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\GjkConvexCastDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
309
msvc/2008/Demos/HeightFieldFluidDemo/HfFluidDemo.vcproj
Normal file
309
msvc/2008/Demos/HeightFieldFluidDemo/HfFluidDemo.vcproj
Normal file
@@ -0,0 +1,309 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="HfFluidDemo"
|
||||
ProjectGUID="{C80A148B-085D-4A54-B3FD-66E3DA868AA2}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="HfFluidDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../HfFluidDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HeightFieldFluidDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\HfFluidDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../HfFluidDemo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\HfFluidDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="HfFluidDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../HfFluidDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HeightFieldFluidDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\HfFluidDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../HfFluidDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\HfFluidDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="HfFluidDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../HfFluidDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HeightFieldFluidDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\HfFluidDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../HfFluidDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\HfFluidDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="HfFluidDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../HfFluidDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HeightFieldFluidDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\HfFluidDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../HfFluidDemo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\HfFluidDemo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\HfFluidDemo_GL_ShapeDrawer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluid.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluidBuoyantConvexShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluidBuoyantShapeCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluidCollisionShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluidRigidCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluidRigidCollisionConfiguration.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\BulletHfFluid\btHfFluidRigidDynamicsWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HeightFieldFluidDemo\HfFluidDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/HelloWorld/AppHelloWorld.vcproj
Normal file
285
msvc/2008/Demos/HelloWorld/AppHelloWorld.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppHelloWorld"
|
||||
ProjectGUID="{54133B06-88EE-4688-B33A-006CF79AEFA3}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppHelloWorld.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppHelloWorld_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HelloWorld/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppHelloWorld_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppHelloWorld_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppHelloWorld_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppHelloWorld.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppHelloWorld.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HelloWorld/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppHelloWorld.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppHelloWorld.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppHelloWorld.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppHelloWorld.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppHelloWorld_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HelloWorld/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppHelloWorld_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppHelloWorld_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppHelloWorld_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppHelloWorld.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppHelloWorld_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/HelloWorld/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib "
|
||||
OutputFile="..\..\..\..\AppHelloWorld_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppHelloWorld_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppHelloWorld_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\HelloWorld\HelloWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
292
msvc/2008/Demos/InternalEdgeDemo/AppInternalEdgeDemo.vcproj
Normal file
292
msvc/2008/Demos/InternalEdgeDemo/AppInternalEdgeDemo.vcproj
Normal file
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppInternalEdgeDemo"
|
||||
ProjectGUID="{EBF2FFE1-9223-4C03-8BD9-468D42EC88C2}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppInternalEdgeDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppInternalEdgeDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/InternalEdgeDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppInternalEdgeDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppInternalEdgeDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppInternalEdgeDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppInternalEdgeDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppInternalEdgeDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/InternalEdgeDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppInternalEdgeDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppInternalEdgeDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppInternalEdgeDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppInternalEdgeDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppInternalEdgeDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/InternalEdgeDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppInternalEdgeDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppInternalEdgeDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppInternalEdgeDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppInternalEdgeDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppInternalEdgeDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/InternalEdgeDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppInternalEdgeDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppInternalEdgeDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppInternalEdgeDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\InternalEdgeDemo\InternalEdgeDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\InternalEdgeDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\InternalEdgeDemo\InternalEdgeDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
282
msvc/2008/Demos/MovingConcaveDemo/AppMovingConcaveDemo.vcproj
Normal file
282
msvc/2008/Demos/MovingConcaveDemo/AppMovingConcaveDemo.vcproj
Normal file
@@ -0,0 +1,282 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppMovingConcaveDemo"
|
||||
ProjectGUID="{9CA7BA86-63D0-40A1-BB7F-718FAB9ECE7F}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppMovingConcaveDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMovingConcaveDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MovingConcaveDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMovingConcaveDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMovingConcaveDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppMovingConcaveDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppMovingConcaveDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMovingConcaveDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MovingConcaveDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMovingConcaveDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMovingConcaveDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppMovingConcaveDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppMovingConcaveDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMovingConcaveDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MovingConcaveDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMovingConcaveDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMovingConcaveDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppMovingConcaveDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppMovingConcaveDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMovingConcaveDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MovingConcaveDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMovingConcaveDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMovingConcaveDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppMovingConcaveDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\MovingConcaveDemo\ConcavePhysicsDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/MultiMaterialDemo/AppMultiMaterialDemo.vcproj
Normal file
285
msvc/2008/Demos/MultiMaterialDemo/AppMultiMaterialDemo.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppMultiMaterialDemo"
|
||||
ProjectGUID="{820D475C-FDEE-4B57-B350-6DE5A31077A4}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppMultiMaterialDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiMaterialDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiMaterialDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiMaterialDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiMaterialDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppMultiMaterialDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppMultiMaterialDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiMaterialDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiMaterialDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiMaterialDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiMaterialDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppMultiMaterialDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppMultiMaterialDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiMaterialDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiMaterialDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiMaterialDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiMaterialDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppMultiMaterialDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppMultiMaterialDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiMaterialDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiMaterialDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiMaterialDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiMaterialDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppMultiMaterialDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\MultiMaterialDemo\MultiMaterialDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\MultiMaterialDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
292
msvc/2008/Demos/MultiThreadedDemo/AppMultiThreadedDemo.vcproj
Normal file
292
msvc/2008/Demos/MultiThreadedDemo/AppMultiThreadedDemo.vcproj
Normal file
@@ -0,0 +1,292 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppMultiThreadedDemo"
|
||||
ProjectGUID="{1D28E75B-C32E-4341-A16E-A23BD6138132}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppMultiThreadedDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiThreadedDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiThreadedDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletMultiThreaded\Debug\BulletMultiThreaded.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiThreadedDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiThreadedDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppMultiThreadedDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppMultiThreadedDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiThreadedDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiThreadedDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletMultiThreaded\Release\BulletMultiThreaded.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiThreadedDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiThreadedDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppMultiThreadedDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppMultiThreadedDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiThreadedDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiThreadedDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletMultiThreaded\MinSizeRel\BulletMultiThreaded.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiThreadedDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiThreadedDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppMultiThreadedDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppMultiThreadedDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppMultiThreadedDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/MultiThreadedDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletMultiThreaded\RelWithDebInfo\BulletMultiThreaded.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppMultiThreadedDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppMultiThreadedDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppMultiThreadedDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\MultiThreadedDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\MultiThreadedDemo\MultiThreadedDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\MultiThreadedDemo\MultiThreadedDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
307
msvc/2008/Demos/OpenGL/OpenGLSupport.vcproj
Normal file
307
msvc/2008/Demos/OpenGL/OpenGLSupport.vcproj
Normal file
@@ -0,0 +1,307 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="OpenGLSupport"
|
||||
ProjectGUID="{0DAC15EA-880D-4172-B6F3-351FD39B2BA5}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="OpenGLSupport.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/OpenGLSupport.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\OpenGLSupport.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="OpenGLSupport.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/OpenGLSupport.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\OpenGLSupport.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="OpenGLSupport.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/OpenGLSupport.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\OpenGLSupport.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="OpenGLSupport.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/OpenGLSupport.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Extras\ConvexHull;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\OpenGLSupport.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GLDebugFont.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_DialogDynamicsWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_DialogWindow.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_ShapeDrawer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_Simplex1to4.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GLDebugDrawer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\RenderTexture.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\DemoApplication.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GlutDemoApplication.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GlutStuff.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\Win32DemoApplication.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GLDebugFont.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_DialogDynamicsWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_DialogWindow.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_ShapeDrawer.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GL_Simplex1to4.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GLDebugDrawer.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\RenderTexture.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\DemoApplication.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GlutDemoApplication.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\GlutStuff.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\OpenGL\Win32DemoApplication.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/RagdollDemo/AppRagdollDemo.vcproj
Normal file
285
msvc/2008/Demos/RagdollDemo/AppRagdollDemo.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppRagdollDemo"
|
||||
ProjectGUID="{74F92B09-F0E2-4A72-9F4D-1BFE5CCF3CAD}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppRagdollDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRagdollDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/RagdollDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRagdollDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRagdollDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppRagdollDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppRagdollDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRagdollDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/RagdollDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRagdollDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRagdollDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppRagdollDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppRagdollDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRagdollDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/RagdollDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRagdollDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRagdollDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppRagdollDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppRagdollDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRagdollDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/RagdollDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRagdollDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRagdollDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppRagdollDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\RagdollDemo\RagdollDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\RagdollDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/Raytracer/AppRaytracer.vcproj
Normal file
285
msvc/2008/Demos/Raytracer/AppRaytracer.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppRaytracer"
|
||||
ProjectGUID="{DC62613F-234B-4A42-9640-370238EEC71C}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppRaytracer.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRaytracer_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Raytracer/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRaytracer_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRaytracer_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppRaytracer_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppRaytracer.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRaytracer.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Raytracer/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRaytracer.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRaytracer.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppRaytracer.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppRaytracer.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRaytracer_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Raytracer/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRaytracer_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRaytracer_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppRaytracer_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppRaytracer.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppRaytracer_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/Raytracer/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppRaytracer_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppRaytracer_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppRaytracer_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Raytracer\Raytracer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\Raytracer\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
299
msvc/2008/Demos/SerializeDemo/AppSerializeDemo.vcproj
Normal file
299
msvc/2008/Demos/SerializeDemo/AppSerializeDemo.vcproj
Normal file
@@ -0,0 +1,299 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppSerializeDemo"
|
||||
ProjectGUID="{74DEE8B9-197D-49DD-BD9E-26AE9B7AC0EB}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppSerializeDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSerializeDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E copy_if_different L:/develop/bullet-2.76/GLUT32.DLL L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Debug\BulletWorldImporter.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\Debug\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSerializeDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSerializeDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppSerializeDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppSerializeDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSerializeDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E copy_if_different L:/develop/bullet-2.76/GLUT32.DLL L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\Release\BulletWorldImporter.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\Release\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSerializeDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSerializeDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppSerializeDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppSerializeDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSerializeDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E copy_if_different L:/develop/bullet-2.76/GLUT32.DLL L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\MinSizeRel\BulletWorldImporter.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\MinSizeRel\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSerializeDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSerializeDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppSerializeDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppSerializeDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSerializeDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;..\..\..\..\Extras\Serialize\BulletFileLoader;..\..\..\..\Extras\Serialize\BulletWorldImporter;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E copy_if_different L:/develop/bullet-2.76/GLUT32.DLL L:/develop/bullet-2.76/msvc/2008/Demos/SerializeDemo"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\Extras\Serialize\BulletWorldImporter\RelWithDebInfo\BulletWorldImporter.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\Extras\Serialize\BulletFileLoader\RelWithDebInfo\BulletFileLoader.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSerializeDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSerializeDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppSerializeDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SerializeDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SerializeDemo\SerializeDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SerializeDemo\SerializeDemo.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
282
msvc/2008/Demos/SimplexDemo/AppSimplexDemo.vcproj
Normal file
282
msvc/2008/Demos/SimplexDemo/AppSimplexDemo.vcproj
Normal file
@@ -0,0 +1,282 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppSimplexDemo"
|
||||
ProjectGUID="{844E6A1F-A432-40F0-AC5E-F167CFFB9705}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppSimplexDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSimplexDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SimplexDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSimplexDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSimplexDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppSimplexDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppSimplexDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSimplexDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SimplexDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSimplexDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSimplexDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppSimplexDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppSimplexDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSimplexDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SimplexDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSimplexDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSimplexDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppSimplexDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppSimplexDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSimplexDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SimplexDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSimplexDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSimplexDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppSimplexDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SimplexDemo\SimplexDemo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppSliderConstraintDemo"
|
||||
ProjectGUID="{AB4F9CB7-4E78-4121-8444-563DB0C3D5F7}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppSliderConstraintDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSliderConstraintDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SliderConstraintDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSliderConstraintDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSliderConstraintDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppSliderConstraintDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppSliderConstraintDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSliderConstraintDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SliderConstraintDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSliderConstraintDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSliderConstraintDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppSliderConstraintDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppSliderConstraintDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSliderConstraintDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SliderConstraintDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSliderConstraintDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSliderConstraintDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppSliderConstraintDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppSliderConstraintDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSliderConstraintDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SliderConstraintDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSliderConstraintDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSliderConstraintDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppSliderConstraintDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SliderConstraintDemo\SliderConstraintDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SliderConstraintDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
288
msvc/2008/Demos/SoftDemo/AppSoftBodyDemo.vcproj
Normal file
288
msvc/2008/Demos/SoftDemo/AppSoftBodyDemo.vcproj
Normal file
@@ -0,0 +1,288 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppSoftBodyDemo"
|
||||
ProjectGUID="{F7A14390-DCFF-4984-8A73-DBBBDB54830B}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppSoftBodyDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSoftBodyDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SoftDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletSoftBody\Debug\BulletSoftBody.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSoftBodyDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSoftBodyDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppSoftBodyDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppSoftBodyDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSoftBodyDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SoftDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletSoftBody\Release\BulletSoftBody.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSoftBodyDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSoftBodyDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppSoftBodyDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppSoftBodyDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSoftBodyDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SoftDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletSoftBody\MinSizeRel\BulletSoftBody.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSoftBodyDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSoftBodyDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppSoftBodyDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppSoftBodyDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppSoftBodyDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/SoftDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletSoftBody\RelWithDebInfo\BulletSoftBody.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppSoftBodyDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppSoftBodyDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppSoftBodyDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SoftDemo\main.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\SoftDemo\SoftDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppUserCollisionAlgorithm"
|
||||
ProjectGUID="{6C89F1BF-8F48-4597-8D5C-9DB2BD5ED883}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppUserCollisionAlgorithm.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppUserCollisionAlgorithm_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/UserCollisionAlgorithm/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppUserCollisionAlgorithm_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppUserCollisionAlgorithm_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppUserCollisionAlgorithm_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppUserCollisionAlgorithm.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppUserCollisionAlgorithm.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/UserCollisionAlgorithm/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppUserCollisionAlgorithm.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppUserCollisionAlgorithm.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppUserCollisionAlgorithm.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppUserCollisionAlgorithm.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppUserCollisionAlgorithm_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/UserCollisionAlgorithm/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppUserCollisionAlgorithm_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppUserCollisionAlgorithm_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppUserCollisionAlgorithm_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppUserCollisionAlgorithm.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppUserCollisionAlgorithm_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/UserCollisionAlgorithm/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppUserCollisionAlgorithm_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppUserCollisionAlgorithm_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppUserCollisionAlgorithm_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\UserCollisionAlgorithm\UserCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\bullet.rc">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
285
msvc/2008/Demos/VehicleDemo/AppVehicleDemo.vcproj
Normal file
285
msvc/2008/Demos/VehicleDemo/AppVehicleDemo.vcproj
Normal file
@@ -0,0 +1,285 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="AppVehicleDemo"
|
||||
ProjectGUID="{89FF4293-CDC8-4007-9625-271996AC50D5}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="AppVehicleDemo.dir\Debug"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppVehicleDemo_Debug.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/VehicleDemo/Debug"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Debug\OpenGLSupport.lib ..\..\src\BulletDynamics\Debug\BulletDynamics.lib ..\..\src\BulletCollision\Debug\BulletCollision.lib ..\..\src\LinearMath\Debug\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppVehicleDemo_Debug.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppVehicleDemo_Debug.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Debug\AppVehicleDemo_Debug.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="AppVehicleDemo.dir\Release"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppVehicleDemo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/VehicleDemo/Release"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\Release\OpenGLSupport.lib ..\..\src\BulletDynamics\Release\BulletDynamics.lib ..\..\src\BulletCollision\Release\BulletCollision.lib ..\..\src\LinearMath\Release\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppVehicleDemo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppVehicleDemo.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="Release\AppVehicleDemo.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="AppVehicleDemo.dir\MinSizeRel"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppVehicleDemo_MinsizeRel.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/VehicleDemo/MinSizeRel"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\MinSizeRel\OpenGLSupport.lib ..\..\src\BulletDynamics\MinSizeRel\BulletDynamics.lib ..\..\src\BulletCollision\MinSizeRel\BulletCollision.lib ..\..\src\LinearMath\MinSizeRel\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppVehicleDemo_MinsizeRel.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="1"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppVehicleDemo_MinsizeRel.pdb"
|
||||
SubSystem="1"
|
||||
ImportLibrary="MinSizeRel\AppVehicleDemo_MinsizeRel.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="AppVehicleDemo.dir\RelWithDebInfo"
|
||||
ConfigurationType="1"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="..\..\..\../AppVehicleDemo_RelWithDebugInfo.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\Demos\OpenGL;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"
|
||||
CommandLine=""C:\Program Files (x86)\CMake 2.81\bin\cmake.exe" -E make_directory L:/develop/bullet-2.76/msvc/2008/Demos/VehicleDemo/RelWithDebInfo"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLinkerTool"
|
||||
LinkLibraryDependencies="false"
|
||||
AdditionalOptions=" /STACK:10000000 /machine:X86 /debug"
|
||||
AdditionalDependencies="$(NOINHERIT) kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib ..\OpenGL\RelWithDebInfo\OpenGLSupport.lib ..\..\src\BulletDynamics\RelWithDebInfo\BulletDynamics.lib ..\..\src\BulletCollision\RelWithDebInfo\BulletCollision.lib ..\..\src\LinearMath\RelWithDebInfo\LinearMath.lib ..\..\..\..\Glut\glut32.lib opengl32.lib glu32.lib "
|
||||
OutputFile="..\..\..\..\AppVehicleDemo_RelWithDebugInfo.exe"
|
||||
Version="0.0"
|
||||
LinkIncremental="2"
|
||||
AdditionalLibraryDirectories=""
|
||||
ProgramDataBaseFile="..\..\..\../AppVehicleDemo_RelWithDebugInfo.pdb"
|
||||
GenerateDebugInformation="TRUE"
|
||||
SubSystem="1"
|
||||
ImportLibrary="RelWithDebInfo\AppVehicleDemo_RelWithDebugInfo.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\VehicleDemo\VehicleDemo.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Demos\VehicleDemo\main.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
328
msvc/2008/Extras/ConvexDecomposition/ConvexDecomposition.vcproj
Normal file
328
msvc/2008/Extras/ConvexDecomposition/ConvexDecomposition.vcproj
Normal file
@@ -0,0 +1,328 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="ConvexDecomposition"
|
||||
ProjectGUID="{5BCB449C-58B6-4D0E-834C-727E1612D0DF}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="ConvexDecomposition.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/ConvexDecomposition.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\ConvexDecomposition.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="ConvexDecomposition.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/ConvexDecomposition.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\ConvexDecomposition.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="ConvexDecomposition.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/ConvexDecomposition.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\ConvexDecomposition.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="ConvexDecomposition.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/ConvexDecomposition.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\ConvexDecomposition;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\ConvexDecomposition.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\bestfitobb.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\ConvexBuilder.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\cd_wavefront.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\fitsphere.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\meshvolume.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\raytri.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\vlookup.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\bestfit.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\cd_hull.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\ConvexDecomposition.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\concavity.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\float_math.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\planetri.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\splitplane.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\ConvexDecomposition.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\cd_vector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\concavity.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\float_math.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\planetri.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\splitplane.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\bestfitobb.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\ConvexBuilder.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\cd_wavefront.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\fitsphere.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\meshvolume.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\raytri.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\vlookup.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\bestfit.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\ConvexDecomposition\cd_hull.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
247
msvc/2008/Extras/GIMPACTUtils/GIMPACTUtils.vcproj
Normal file
247
msvc/2008/Extras/GIMPACTUtils/GIMPACTUtils.vcproj
Normal file
@@ -0,0 +1,247 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="GIMPACTUtils"
|
||||
ProjectGUID="{850CC1F0-33C1-4D5F-8B88-C13809D50E45}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="GIMPACTUtils.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/GIMPACTUtils.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\GIMPACTUtils.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="GIMPACTUtils.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/GIMPACTUtils.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\GIMPACTUtils.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="GIMPACTUtils.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/GIMPACTUtils.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\GIMPACTUtils.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="GIMPACTUtils.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/GIMPACTUtils.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\GIMPACT\include;..\..\..\..\src;..\..\..\..\Extras\GIMPACTUtils;..\..\..\..\Extras\ConvexDecomposition;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\GIMPACTUtils.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\GIMPACTUtils\btGImpactConvexDecompositionShape.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\GIMPACTUtils\btGImpactConvexDecompositionShape.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
368
msvc/2008/Extras/LibXML/XML.vcproj
Normal file
368
msvc/2008/Extras/LibXML/XML.vcproj
Normal file
@@ -0,0 +1,368 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="XML"
|
||||
ProjectGUID="{A08184C7-0F15-4AD6-AFDE-3950BBACB923}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="XML.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="1"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="0"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/XML.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\XML.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="XML.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
CompileAs="1"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="0"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/XML.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\XML.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="XML.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
CompileAs="1"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="0"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/XML.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\XML.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="XML.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
CompileAs="1"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="0"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/XML.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\Extras\LibXML;..\..\..\..\Extras\LibXML\include;"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_WINDOWS,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\XML.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\c14n.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\catalog.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\chvalid.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\debugXML.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\dict.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\DOCBparser.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\encoding.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\entities.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\error.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\globals.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\hash.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\HTMLparser.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\HTMLtree.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\list.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\nanoftp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\nanohttp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\parser.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\parserInternals.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\pattern.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\relaxng.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\SAX.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\SAX2.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\schematron.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\threads.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\tree.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\trio.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\trionan.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\triostr.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\uri.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\valid.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xinclude.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xlink.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlIO.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlmemory.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlmodule.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlreader.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlregexp.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlsave.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlschemas.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlschemastypes.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlstring.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlunicode.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xmlwriter.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xpath.c">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\LibXML\xpointer.c">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,271 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BulletFileLoader"
|
||||
ProjectGUID="{AB19CEC4-F09A-4864-94AA-ECAD14095D92}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="BulletFileLoader.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/BulletFileLoader.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\BulletFileLoader.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="BulletFileLoader.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/BulletFileLoader.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\BulletFileLoader.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="BulletFileLoader.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/BulletFileLoader.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\BulletFileLoader.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="BulletFileLoader.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/BulletFileLoader.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\BulletFileLoader.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bChunk.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bDNA.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bFile.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\btBulletFile.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bChunk.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bCommon.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bDefines.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bDNA.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\bFile.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletFileLoader\btBulletFile.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
@@ -0,0 +1,247 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BulletWorldImporter"
|
||||
ProjectGUID="{E8799A4A-3157-4046-ABBB-91C7C58619D2}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="BulletWorldImporter.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/BulletWorldImporter.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\BulletWorldImporter.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="BulletWorldImporter.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/BulletWorldImporter.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\BulletWorldImporter.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="BulletWorldImporter.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/BulletWorldImporter.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\BulletWorldImporter.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="BulletWorldImporter.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/BulletWorldImporter.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\..\Glut;..\..\..\..\..\src;..\..\..\..\..\Extras\Serialize\BulletFileLoader;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\BulletWorldImporter.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletWorldImporter\btBulletWorldImporter.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\..\Extras\Serialize\BulletWorldImporter\btBulletWorldImporter.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
358
msvc/2008/Extras/glui/GLUI.vcproj
Normal file
358
msvc/2008/Extras/glui/GLUI.vcproj
Normal file
@@ -0,0 +1,358 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="GLUI"
|
||||
ProjectGUID="{CAC1FD95-E271-4263-82DD-6D29AE6CEDFD}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="GLUI.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/GLUI.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\GLUI.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="GLUI.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/GLUI.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\GLUI.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="GLUI.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/GLUI.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\GLUI.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="GLUI.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/GLUI.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\glut;..\..\..\..\Extras\glui;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,_CRT_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\GLUI.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\GL">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\Jamfile">
|
||||
</File>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_checkbox.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_panel.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_spinner.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_treepanel.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_column.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_radio.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_statictext.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_window.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_add_controls.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_commandline.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_list.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_rollout.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_string.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\quaternion.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\algebra3.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_bitmap_img_data.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_control.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_listbox.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_rotation.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_textbox.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_bitmaps.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_edittext.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_mouse_iaction.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_scrollbar.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_translation.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\arcball.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_button.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_filebrowser.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_node.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_separator.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_tree.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\arcball.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_internal.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\glui_internal_control.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\quaternion.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\Extras\glui\algebra3.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
868
msvc/2008/src/BulletCollision/BulletCollision.vcproj
Normal file
868
msvc/2008/src/BulletCollision/BulletCollision.vcproj
Normal file
@@ -0,0 +1,868 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BulletCollision"
|
||||
ProjectGUID="{72A81C80-79FC-4511-B7E1-BBCEE0142B2C}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="BulletCollision.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/BulletCollision.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\BulletCollision.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="BulletCollision.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/BulletCollision.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\BulletCollision.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="BulletCollision.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/BulletCollision.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\BulletCollision.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="BulletCollision.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/BulletCollision.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\BulletCollision.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btAxisSweep3.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btBroadphaseProxy.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btDbvt.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btDbvtBroadphase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btDispatcher.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btMultiSapBroadphase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btOverlappingPairCache.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btQuantizedBvh.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btSimpleBroadphase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btActivatingCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btBoxBoxCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btBox2dBox2dCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btBoxBoxDetector.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionDispatcher.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionObject.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCompoundCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvexConcaveCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvexConvexAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvexPlaneCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvex2dConvex2dAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btDefaultCollisionConfiguration.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btEmptyCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btGhostObject.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btInternalEdgeUtility.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btManifoldResult.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSimulationIslandManager.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSphereBoxCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSphereSphereCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSphereTriangleCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btUnionFind.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\SphereTriangleDetector.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btBoxShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btBox2dShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btBvhTriangleMeshShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCapsuleShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCollisionShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCompoundShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConcaveShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConeShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexHullShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexInternalShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexPointCloudShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvex2dShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexTriangleMeshShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCylinderShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btEmptyShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btHeightfieldTerrainShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMinkowskiSumShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMultimaterialTriangleMeshShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMultiSphereShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btOptimizedBvh.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btPolyhedralConvexShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btScaledBvhTriangleMeshShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btShapeHull.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btSphereShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btStaticPlaneShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btStridingMeshInterface.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTetrahedronShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleBuffer.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleCallback.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleIndexVertexArray.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleIndexVertexMaterialArray.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleMesh.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleMeshShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btUniformScalingShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btContactProcessing.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGenericPoolAllocator.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactBvh.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactQuantizedBvh.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactShape.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btTriangleShapeEx.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_box_set.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_contact.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_memory.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_tri_collision.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btContinuousConvexCollision.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btConvexCast.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkConvexCast.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkEpa2.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkEpaPenetrationDepthSolver.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkPairDetector.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btMinkowskiPenetrationDepthSolver.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btPersistentManifold.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btRaycastCallback.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btSubSimplexConvexCast.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btVoronoiSimplexSolver.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btInternalEdgeUtility.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\btBulletCollisionCommon.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btAxisSweep3.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btBroadphaseInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btBroadphaseProxy.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btDbvt.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btDbvtBroadphase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btDispatcher.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btMultiSapBroadphase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btOverlappingPairCache.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btOverlappingPairCallback.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btQuantizedBvh.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\BroadphaseCollision\btSimpleBroadphase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btActivatingCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btBoxBoxCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btBox2dBox2dCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btBoxBoxDetector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionConfiguration.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionCreateFunc.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionDispatcher.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionObject.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCollisionWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btCompoundCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvexConcaveCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvexConvexAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvex2dConvex2dAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btConvexPlaneCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btDefaultCollisionConfiguration.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btEmptyCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btGhostObject.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btManifoldResult.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSimulationIslandManager.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSphereBoxCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSphereSphereCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btSphereTriangleCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\btUnionFind.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionDispatch\SphereTriangleDetector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btBoxShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btBox2dShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btBvhTriangleMeshShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCapsuleShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCollisionMargin.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCollisionShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCompoundShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConcaveShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConeShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexHullShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexInternalShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexPointCloudShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvex2dShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btConvexTriangleMeshShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btCylinderShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btEmptyShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btHeightfieldTerrainShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMaterial.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMinkowskiSumShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMultimaterialTriangleMeshShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btMultiSphereShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btOptimizedBvh.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btPolyhedralConvexShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btScaledBvhTriangleMeshShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btShapeHull.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btSphereShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btStaticPlaneShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btStridingMeshInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTetrahedronShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleBuffer.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleCallback.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleIndexVertexArray.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleIndexVertexMaterialArray.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleMesh.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleMeshShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btTriangleShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\CollisionShapes\btUniformScalingShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btBoxCollision.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btClipPolygon.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btContactProcessing.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGenericPoolAllocator.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGeometryOperations.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactBvh.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactMassUtil.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactQuantizedBvh.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btGImpactShape.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btQuantization.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\btTriangleShapeEx.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_array.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_basic_geometry_operations.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_bitset.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_box_collision.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_box_set.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_clip_polygon.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_contact.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_geom_types.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_geometry.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_hash_table.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_linear_math.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_math.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_memory.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_radixsort.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\Gimpact\gim_tri_collision.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btContinuousConvexCollision.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btConvexCast.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btConvexPenetrationDepthSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btDiscreteCollisionDetectorInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkConvexCast.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkEpa2.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkEpaPenetrationDepthSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btGjkPairDetector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btManifoldPoint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btMinkowskiPenetrationDepthSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btPersistentManifold.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btPointCollector.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btRaycastCallback.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btSimplexSolverInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btSubSimplexConvexCast.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletCollision\NarrowPhaseCollision\btVoronoiSimplexSolver.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
391
msvc/2008/src/BulletDynamics/BulletDynamics.vcproj
Normal file
391
msvc/2008/src/BulletDynamics/BulletDynamics.vcproj
Normal file
@@ -0,0 +1,391 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BulletDynamics"
|
||||
ProjectGUID="{A293324D-7176-42A6-9961-F9093B76D5A1}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="BulletDynamics.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/BulletDynamics.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\BulletDynamics.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="BulletDynamics.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/BulletDynamics.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\BulletDynamics.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="BulletDynamics.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/BulletDynamics.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\BulletDynamics.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="BulletDynamics.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/BulletDynamics.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\BulletDynamics.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Character\btKinematicCharacterController.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btConeTwistConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btContactConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btGeneric6DofConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btGeneric6DofSpringConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btHinge2Constraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btHingeConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btPoint2PointConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSequentialImpulseConstraintSolver.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSliderConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSolve2LinearConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btTypedConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btUniversalConstraint.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btContinuousDynamicsWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btDiscreteDynamicsWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btRigidBody.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btSimpleDynamicsWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\Bullet-C-API.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Vehicle\btRaycastVehicle.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Vehicle\btWheelInfo.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\btBulletDynamicsCommon.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\btBulletCollisionCommon.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btConeTwistConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btConstraintSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btContactConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btContactSolverInfo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btGeneric6DofConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btGeneric6DofSpringConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btHinge2Constraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btHingeConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btJacobianEntry.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btPoint2PointConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSequentialImpulseConstraintSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSliderConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSolve2LinearConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSolverBody.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btSolverConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btTypedConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\ConstraintSolver\btUniversalConstraint.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btActionInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btContinuousDynamicsWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btDiscreteDynamicsWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btDynamicsWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btSimpleDynamicsWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Dynamics\btRigidBody.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Vehicle\btRaycastVehicle.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Vehicle\btVehicleRaycaster.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Vehicle\btWheelInfo.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Character\btCharacterControllerInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletDynamics\Character\btKinematicCharacterController.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
397
msvc/2008/src/BulletMultiThreaded/BulletMultiThreaded.vcproj
Normal file
397
msvc/2008/src/BulletMultiThreaded/BulletMultiThreaded.vcproj
Normal file
@@ -0,0 +1,397 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BulletMultiThreaded"
|
||||
ProjectGUID="{7758C4A0-38E3-4E5C-BE86-1A4C50E55859}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="BulletMultiThreaded.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/BulletMultiThreaded.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\BulletMultiThreaded.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="BulletMultiThreaded.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/BulletMultiThreaded.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\BulletMultiThreaded.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="BulletMultiThreaded.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/BulletMultiThreaded.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\BulletMultiThreaded.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="BulletMultiThreaded.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/BulletMultiThreaded.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;..\..\..\..\src\BulletMultiThreaded\vectormath\scalar\cpp;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\BulletMultiThreaded.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuFakeDma.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuLibspe2Support.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btThreadSupportInterface.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\Win32ThreadSupport.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\PosixThreadSupport.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SequentialThreadSupport.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuSampleTaskProcess.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuCollisionObjectWrapper.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuCollisionTaskProcess.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuGatheringCollisionDispatcher.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuContactManifoldCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\boxBoxDistance.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuContactResult.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuMinkowskiPenetrationDepthSolver.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuGatheringCollisionTask.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuCollisionShapes.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpu3DGridBroadphase.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\MiniCLTaskScheduler.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\MiniCLTask\MiniCLTask.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\PlatformDefinitions.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuFakeDma.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuDoubleBuffer.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuLibspe2Support.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btThreadSupportInterface.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\Win32ThreadSupport.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\PosixThreadSupport.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SequentialThreadSupport.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuSampleTaskProcess.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuCollisionObjectWrapper.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuCollisionTaskProcess.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuGatheringCollisionDispatcher.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuContactManifoldCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\Box.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\boxBoxDistance.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuContactResult.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuMinkowskiPenetrationDepthSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuConvexPenetrationDepthSolver.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuPreferredPenetrationDirections.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuGatheringCollisionTask.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\SpuNarrowPhaseCollisionTask\SpuCollisionShapes.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpu3DGridBroadphase.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpu3DGridBroadphaseSharedCode.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpu3DGridBroadphaseSharedDefs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpu3DGridBroadphaseSharedTypes.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpuDefines.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpuUtilsSharedCode.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\btGpuUtilsSharedDefs.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\MiniCLTaskScheduler.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletMultiThreaded\MiniCLTask\MiniCLTask.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\MiniCL\cl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\MiniCL\cl_gl.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\MiniCL\cl_platform.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
286
msvc/2008/src/BulletSoftBody/BulletSoftBody.vcproj
Normal file
286
msvc/2008/src/BulletSoftBody/BulletSoftBody.vcproj
Normal file
@@ -0,0 +1,286 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="BulletSoftBody"
|
||||
ProjectGUID="{724439CC-1593-4CD9-BDA6-C8AA26EA0B8A}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="BulletSoftBody.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/BulletSoftBody.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\BulletSoftBody.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="BulletSoftBody.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/BulletSoftBody.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\BulletSoftBody.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="BulletSoftBody.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/BulletSoftBody.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\BulletSoftBody.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="BulletSoftBody.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/BulletSoftBody.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\BulletSoftBody.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBody.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBodyConcaveCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBodyHelpers.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBodyRigidBodyCollisionConfiguration.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftRigidCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftRigidDynamicsWorld.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftSoftCollisionAlgorithm.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBody.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBodyConcaveCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBodyHelpers.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftBodyRigidBodyCollisionConfiguration.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftRigidCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftRigidDynamicsWorld.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSoftSoftCollisionAlgorithm.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\BulletSoftBody\btSparseSDF.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
325
msvc/2008/src/LinearMath/LinearMath.vcproj
Normal file
325
msvc/2008/src/LinearMath/LinearMath.vcproj
Normal file
@@ -0,0 +1,325 @@
|
||||
<?xml version="1.0" encoding = "Windows-1252"?>
|
||||
<VisualStudioProject
|
||||
ProjectType="Visual C++"
|
||||
Version="9.00"
|
||||
Name="LinearMath"
|
||||
ProjectGUID="{BECCF265-AD5E-48F1-BC48-FAF356724523}"
|
||||
Keyword="Win32Proj">
|
||||
<Platforms>
|
||||
<Platform
|
||||
Name="Win32"/>
|
||||
</Platforms>
|
||||
<Configurations>
|
||||
<Configuration
|
||||
Name="Debug|Win32"
|
||||
OutputDirectory="Debug"
|
||||
IntermediateDirectory="LinearMath.dir\Debug"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
BasicRuntimeChecks="3"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="0"
|
||||
Optimization="0"
|
||||
RuntimeLibrary="3"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
AssemblerListingLocation="Debug"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Debug/LinearMath.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,_DEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Debug\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Debug\LinearMath.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="Release|Win32"
|
||||
OutputDirectory="Release"
|
||||
IntermediateDirectory="LinearMath.dir\Release"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="2"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
AssemblerListingLocation="Release"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="Release/LinearMath.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"Release\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="Release\LinearMath.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="MinSizeRel|Win32"
|
||||
OutputDirectory="MinSizeRel"
|
||||
IntermediateDirectory="LinearMath.dir\MinSizeRel"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="1"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
AssemblerListingLocation="MinSizeRel"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="MinSizeRel/LinearMath.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"MinSizeRel\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="MinSizeRel\LinearMath.lib"/>
|
||||
</Configuration>
|
||||
<Configuration
|
||||
Name="RelWithDebInfo|Win32"
|
||||
OutputDirectory="RelWithDebInfo"
|
||||
IntermediateDirectory="LinearMath.dir\RelWithDebInfo"
|
||||
ConfigurationType="4"
|
||||
UseOfMFC="0"
|
||||
ATLMinimizesCRunTimeLibraryUsage="FALSE"
|
||||
CharacterSet="2">
|
||||
<Tool
|
||||
Name="VCCLCompilerTool"
|
||||
AdditionalOptions=" /Zm1000 /fp:fast"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
CompileAs="2"
|
||||
DebugInformationFormat="3"
|
||||
EnableEnhancedInstructionSet="1"
|
||||
ExceptionHandling="1"
|
||||
InlineFunctionExpansion="1"
|
||||
Optimization="2"
|
||||
RuntimeLibrary="2"
|
||||
RuntimeTypeInfo="TRUE"
|
||||
WarningLevel="3"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
AssemblerListingLocation="RelWithDebInfo"
|
||||
ObjectFile="$(IntDir)\"
|
||||
ProgramDataBaseFileName="RelWithDebInfo/LinearMath.pdb"
|
||||
/>
|
||||
<Tool
|
||||
Name="VCCustomBuildTool"/>
|
||||
<Tool
|
||||
Name="VCResourceCompilerTool"
|
||||
AdditionalIncludeDirectories="..\..\..\..\Glut;..\..\..\..\src;"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""/>
|
||||
<Tool
|
||||
Name="VCMIDLTool"
|
||||
PreprocessorDefinitions="WIN32,NDEBUG,_IRR_STATIC_LIB_,_CRT_SECURE_NO_WARNINGS,_CRT_SECURE_NO_DEPRECATE,_SCL_SECURE_NO_WARNINGS,CMAKE_INTDIR=\"RelWithDebInfo\""
|
||||
MkTypLibCompatible="FALSE"
|
||||
TargetEnvironment="1"
|
||||
GenerateStublessProxies="TRUE"
|
||||
TypeLibraryName="$(InputName).tlb"
|
||||
OutputDirectory="$(IntDir)"
|
||||
HeaderFileName="$(InputName).h"
|
||||
DLLDataFileName=""
|
||||
InterfaceIdentifierFileName="$(InputName)_i.c"
|
||||
ProxyFileName="$(InputName)_p.c"/>
|
||||
<Tool
|
||||
Name="VCPreBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCPreLinkEventTool"/>
|
||||
<Tool
|
||||
Name="VCPostBuildEventTool"/>
|
||||
<Tool
|
||||
Name="VCLibrarianTool"
|
||||
OutputFile="RelWithDebInfo\LinearMath.lib"/>
|
||||
</Configuration>
|
||||
</Configurations>
|
||||
<Files>
|
||||
<Filter
|
||||
Name="Source Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btAlignedAllocator.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btConvexHull.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btGeometryUtil.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btQuickprof.cpp">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btSerializer.cpp">
|
||||
</File>
|
||||
</Filter>
|
||||
<Filter
|
||||
Name="Header Files"
|
||||
Filter="">
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btAabbUtil2.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btAlignedAllocator.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btAlignedObjectArray.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btConvexHull.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btDefaultMotionState.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btGeometryUtil.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btHashMap.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btIDebugDraw.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btList.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btMatrix3x3.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btMinMax.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btMotionState.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btPoolAllocator.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btQuadWord.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btQuaternion.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btQuickprof.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btRandom.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btScalar.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btSerializer.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btStackAlloc.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btTransform.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btTransformUtil.h">
|
||||
</File>
|
||||
<File
|
||||
RelativePath="..\..\..\..\src\LinearMath\btVector3.h">
|
||||
</File>
|
||||
</Filter>
|
||||
</Files>
|
||||
<Globals>
|
||||
</Globals>
|
||||
</VisualStudioProject>
|
||||
Reference in New Issue
Block a user