-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjectCreationProtocol.txt
More file actions
30 lines (16 loc) · 899 Bytes
/
ProjectCreationProtocol.txt
File metadata and controls
30 lines (16 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Steps to follow after creating new project in the solution:
1. Create "src" folder inside project folder in the files explorer
2. Create a "Main.cpp" in the "src" folder
3. Add "Main.cpp" as an existing item in the project's "Source Files" in the "Solution Explorer" inside Visual Studio
4. Right-click on the project in "Solution Explorer"->"Properties"
5. "VC++ Directories"->"Include Directories"->"<Edit>
6. Add "Libraries/include" and "include" folders here.
7. "VC++ Directories"->"Library Directories"->"<Edit>
8. Add "Libraries/lib" and "lib" folders here.
9. "Linker"->"Input"->"Additional Dependencies"->"<Edit>"
10. Type in:
glfw3.lib
opengl32.lib
11. Add "glad.c" to "Source Files" in the Solution Explorer
12. Add relevant .h files from "include" to "Header Files" in Solution Explorer
13. Add corresonding .cpp files from "lib" to "Source Files" in Solution Explorer