更新 cmake最低版本需求和 gitignore

pull/2/head
InkSoul 2024-03-04 00:11:15 +08:00
parent 1fe69cd629
commit 5e4acd3f08
2 changed files with 5 additions and 2 deletions

3
.gitignore vendored
View File

@ -39,3 +39,6 @@ out/
.vs/
vulkan_asset_pack_gltf.zip
*.zip
# vscode build file
build/

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.4 FATAL_ERROR)
cmake_policy(VERSION 2.8)
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
cmake_policy(VERSION 3.5)
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake")
set(NAME PlumageRender)