Open flamyoad opened 2 years ago
Lesson: Compile all cpp into object files and link them together into an .exe executable.
cpp
.exe
g++ -c chip8.cpp g++ -c main.cpp g++ main.o chip8.o -o main.exe
Lesson: Compile all
cpp
into object files and link them together into an.exe
executable.