Compilation fix for VS

This commit is contained in:
dingusdev 2023-06-19 22:36:09 -07:00
parent 357fc3a73a
commit d11d693b52
3 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.1)
project(dingusppc)
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)

View File

@ -50,7 +50,7 @@ As of now, only the Power Macintosh G3 Beige is implemented.
You need to install development tools first.
At least, a C++11 compliant compiler and [CMake](https://cmake.org) are required.
At least, a C++20 compliant compiler and [CMake](https://cmake.org) are required.
You will also have to recursive clone or run
```

View File

@ -1,4 +1,4 @@
set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD 20)
include_directories("${PROJECT_SOURCE_DIR}"
"${PROJECT_SOURCE_DIR}/devices"