# Step 2 Create the project folder

## Creating the project folder

Create your project folder, such as proj01

## Setting up subdirectories in your project folder

include : for C++ header files

external : for external libraries

src: source files

cmake: for cmake helper files

## Copy external libraries files

#### GLFW

renaming the root project folder glfw-3.4.bin.WIN64 which contains README.md to glfw&#x20;

copy the glfw folder to the external folder

copy glfw/include/GLFW to proj01/include

copy your **Findglfw3.cmake** downloaded from Blackboard to **cmake** folder.

#### GLAD

copy glad/src/glad.c to src

&#x20;copy glad/include/glad and glad/include/KHR to proj01/include

## Open the project folder in VSCode or Visual Studio

Create main.cpp under src, simply put a placeholder main function.

<figure><img src="https://3464970502-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F3JUKGJZ67JX02QZdPhsy%2Fuploads%2FQqwKaXyxgGo89kEFCzlA%2Ff2dbaefe-1d3f-4593-9935-765e6ebe2d40.png?alt=media&#x26;token=d018ac45-6a2c-484e-905c-16c4748a2a89" alt=""><figcaption></figcaption></figure>
