From 66625fa567e163b7545fb5fad2be5be5c13446b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stuart=20Ga=CE=BBe?= Date: Tue, 1 Jul 2025 07:15:31 +0100 Subject: [PATCH] Update README.md Original instructions don't work for a freshly cloned repository. It is missing imgui at the top level (same level as src and headers). Cloning imgui repository at the top level fixes this. --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 15bb127..88b1ee1 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,8 @@ A minimal template for starting an **ImGui** project on macOS. This repository p ## How to use 1. Clone the repository. -2. Build the project using CMake. -3. Start customizing the ImGui interface for your application. +2. Clone imgui repository inside this repository. +3. Build the project using CMake. +4. Start customizing the ImGui interface for your application. Feel free to extend and modify this template for your own projects!