代码拉取完成,页面将自动刷新
cmake_minimum_required(VERSION 3.8)
project(box2d LANGUAGES CXX)
set(CMAKE_CONFIGURATION_TYPES "Debug;RelWithDebInfo" CACHE STRING "" FORCE)
add_subdirectory(src)
option(BUILD_TESTS "Build the Box2D unit tests" ON)
option(BUILD_SAMPLES "Build the Box2D samples" ON)
if (BUILD_TESTS)
add_subdirectory(tests)
endif()
if (BUILD_SAMPLES)
add_subdirectory(extern/glad)
add_subdirectory(extern/glfw)
add_subdirectory(extern/imgui)
add_subdirectory(extern/sajson)
add_subdirectory(samples)
# default startup project for Visual Studio
if (MSVC)
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT samples)
set_property(TARGET samples PROPERTY VS_DEBUGGER_WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}/samples")
endif()
endif()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。