1 Star 0 Fork 1

2144/gameplay3d-engine

forked from zhong317/gameplay3d-engine 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
CMakeLists.txt 632 Bytes
一键复制 编辑 原始数据 按行查看 历史
Nick Landry 提交于 2015-01-06 10:22 . Don't compile the tools by default
cmake_minimum_required(VERSION 2.8)
project(GamePlay)
set(GAMEPLAY_VERSION 3.0.0)
set(CMAKE_C_COMPILER_INIT g++)
# debug
message( "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}" )
if ( "${CMAKE_BUILD_TYPE}" STREQUAL "DEBUG" )
add_definitions(-D_DEBUG)
endif()
# architecture
if ( CMAKE_SIZEOF_VOID_P EQUAL 8 )
set(ARCH_DIR "x64")
else()
set(ARCH_DIR "x86")
endif()
# gameplay library
add_subdirectory(gameplay)
# gameplay samples
add_subdirectory(samples)
# gameplay encoder
# A pre-compiled executable can be found in 'gameplay/bin'. Uncomment to build yourself.
#add_subdirectory(tools/encoder)
#add_subdirectory(tools/luagen)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iamherer/gameplay3d-engine.git
git@gitee.com:iamherer/gameplay3d-engine.git
iamherer
gameplay3d-engine
gameplay3d-engine
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385