AcademyUE5 Build C++ Project | Compile Manually | Compile Project via Visual Studio
TutorialBeginner

UE5 Build C++ Project | Compile Manually | Compile Project via Visual Studio

Learn how to manually compile Unreal Engine C++ projects using Visual Studio. Essential for fixing 'compile manually' errors.

May 3, 2023
Cyrus 365
1 min read
Unreal EngineC++Visual StudioTroubleshooting

Learn how to compile a project using Visual Studio. It is very useful when you get an error message that tells you to compile manually when opening a project. I will teach you the really easy method.

Install Visual Studio 2022 (or 2019)

Visual Studio Download Page
Visual Studio Download Page

Download Visual Studio from the official website: https://visualstudio.microsoft.com/vs/whatsnew/

Compilation Steps

1

Right Click '.uproject' file, then select 'Generate Visual Studio project files'

2

Wait until the generation process finishes

3

Double click the generated '.sln' file, choose Visual Studio 2022 to open it

4

In the right panel of Visual Studio, you should see 'Solution Explorer'

5

Under the 'Games' folder in Solution Explorer, you should see your Project Name

6

Right Click your Project Name and select 'Set as Startup Project'

7

Right Click it again, and choose 'Build' (Or use shortcut key Ctrl + B)

8

It will start to Build (Compile) in Visual Studio

9

Wait for the build to complete successfully

Done! 🥂