From d5935c6bbc8383ad53a80f4dd81c4cd8f5d72b62 Mon Sep 17 00:00:00 2001 From: Fabio Cavallo Date: Tue, 20 Feb 2024 09:06:18 +0100 Subject: [PATCH] Update README.md. --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a3529eaf8..ed3c7b981 100644 --- a/README.md +++ b/README.md @@ -175,8 +175,10 @@ CMake Options | ENABLE_QT6_LIBS | Enable support for QT6 libraries | OFF | | DISABLE_PORTABLE_MODE | Disable portable mode handling (useful with sandbox
environments like Flatpak) | OFF | - ## :penguin: Linux +
+Expand + #### Dependencies * [CMake >= 3.14](https://cmake.org) ([Ninja](https://ninja-build.org) build system is optional) * [Qt5](https://www.qt.io) or [Qt6](https://www.qt.io) with OpenGL support (qtcore, qtgui, qtwidgets, qtnetwork, qtsvg and qttools) @@ -225,7 +227,12 @@ to start the emulator ```bash ./build/src/punes ``` +
+ ## :smiling_imp: FreeBSD +
+Expand + #### Dependencies * [CMake >= 3.14](https://cmake.org) ([Ninja](https://ninja-build.org) build system is optional) * [Qt5](https://www.qt.io) or [Qt6](https://www.qt.io) with OpenGL support (qtcore, qtgui, qtwidgets, qtnetwork, qtsvg and qttools) @@ -261,7 +268,12 @@ cmake -B build -DCMAKE_C_FLAGS_DEBUG:STRING='-O0 -g -DDEBUG' -DCMAKE_CXX_FLAGS_D make -j2 ``` where `[...]` are the other necessary options. -## :blowfish: OpenBSD +
+ +## :blowfish: OpenBSD +
+Expand + #### Dependencies * [CMake >= 3.14](https://cmake.org) ([Ninja](https://ninja-build.org) build system is optional) * [Qt5](https://www.qt.io) or [Qt6](https://www.qt.io) with OpenGL support (qtcore, qtgui, qtwidgets, qtnetwork, qtsvg and qttools) @@ -294,7 +306,12 @@ cmake -B build -DCMAKE_C_FLAGS_DEBUG:STRING='-O0 -g -DDEBUG' -DCMAKE_CXX_FLAGS_D make -j2 ``` where `[...]` are the other necessary options. +
+ ## :computer: Windows +
+Expand + #### Dependencies * [Qt5](https://www.qt.io) with OpenGL support (5.6.3 is the last if you want the support for Windows XP) #### Development Environment installation @@ -394,6 +411,7 @@ If you need the debug version then you need to replace the `cmake -B build -G Ni cmake -B build -G Ninja -DCMAKE_C_FLAGS_DEBUG:STRING='-O0 -g -DDEBUG' -DCMAKE_CXX_FLAGS_DEBUG:STRING='-O0 -g -DDEBUG' -DCMAKE_BUILD_TYPE:STRING=Debug -DENABLE_RELEASE:BOOL=OFF [...] ``` where `[...]` are the other necessary options. +
-----------