Skip to content

Commit

Permalink
aligned required cmake versions (fixes #130)
Browse files Browse the repository at this point in the history
  • Loading branch information
floooh committed Nov 23, 2023
1 parent 3e746d8 commit b3bc55c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# project: sokol-samples
#
cmake_minimum_required(VERSION 3.5)
cmake_minimum_required(VERSION 3.21)
set(CMAKE_C_STANDARD 99)
if (FIPS_IOS)
set(CMAKE_OSX_DEPLOYMENT_TARGET "11.0" CACHE STRING "")
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ command line):
```sh
> git --version
2.x.x (any version should do)
> python --version
Python 3.x or 2.x
> python3 --version
Python 3.x
> cmake --version
cmake version 3.8.x or later
cmake version 3.21.x or later
# on OSX (on Windows you just need a recent VS)
> xcodebuild -version
Xcode 10.x (or later)
Xcode xx.x (newer is better, older version are no longer tested)
# make is only needed on Linux or when building the WASM samples
> make --version
GNU Make 3.81
Expand Down

0 comments on commit b3bc55c

Please sign in to comment.