From 17625e20dfbcb156ae6a7ea464579d103e3486ce Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Wed, 22 Jan 2025 13:26:11 -0800 Subject: [PATCH] Removed redundant step in Visual Studio instructions --- docs/INTRO-visualstudio.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/INTRO-visualstudio.md b/docs/INTRO-visualstudio.md index 31a16e0a0a..2cc6100cb8 100644 --- a/docs/INTRO-visualstudio.md +++ b/docs/INTRO-visualstudio.md @@ -8,8 +8,7 @@ We'll start by creating a simple project to build and run [hello.c](hello.c) - Create a new project in Visual Studio, using the C++ Empty Project template - Add hello.c to the Source Files - Right click the solution, select add an existing project, navigate to VisualC/SDL and add SDL.vcxproj -- Select your main project and go to Project -> Project Dependencies and select SDL3 -- Select your main project and go to Project -> Properties, set the filter at the top to "All Configurations" and "All Platforms", select VC++ Directories and add the SDL include directory to "Include Directories" - Select your main project and go to Project -> Add Reference and select SDL3 +- Select your main project and go to Project -> Properties, set the filter at the top to "All Configurations" and "All Platforms", select VC++ Directories and add the SDL include directory to "Include Directories" - Build and run!