DEV Community

Discussion on: Setup Visual Studio Code for Multi-File C++ Projects

Collapse
 
talhabalaj profile image
Talha Balaj

I'm glad you found a work-around, I copy-pasted the makefile from my project, so maybe tabs were removed.

If you want main.cpp in your root directory of your project. try this.

$(BIN)/$(EXECUTABLE): $(SRC)/*.cpp main.cpp
Enter fullscreen mode Exit fullscreen mode

Thank you, I'm glad it helped.