From 0bf86eb81fe6d7cb4c73c6b9a372272a5694e0a4 Mon Sep 17 00:00:00 2001 From: Thomas Guillory <117636251+LeNomDesFleurs@users.noreply.github.com> Date: Fri, 5 Jun 2026 15:59:52 +0200 Subject: [PATCH] Typo in readme build instruction ``` Generators * Unix Makefiles = Generates standard UNIX makefiles. Ninja = Generates build.ninja files. Ninja Multi-Config = Generates build-.ninja files. Watcom WMake = Generates Watcom WMake makefiles. Xcode = Generate Xcode project files. ``` Code in Xcode is not capitalized --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e64b74c5e9..0ceffdf64a 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ You can also download a recent experimental build from our [website](https://plu git clone --recursive https://github.com/plugdata-team/plugdata.git cd plugdata mkdir build && cd build -cmake .. (the generator can be specified using -G"Unix Makefiles", -G"XCode" or -G"Visual Studio 16 2019" -A x64) +cmake .. (the generator can be specified using -G"Unix Makefiles", -G"Xcode" or -G"Visual Studio 16 2019" -A x64) cmake --build . ```