Skip to content

Commit

Permalink
Adição do suporte ao VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
edsomjr committed Apr 23, 2016
1 parent 65493ed commit b1ce6b9
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
lib
obj
*.d
test/test
23 changes: 23 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "bash",
"isShellCommand": true,
"args": ["-c"],
"showOutput": "always"

"tasks": [
{
"taskName": "Compile",
"suppressTaskName": true,
"isBuildCommand": true,
"args": ["make test/test"],
}
{
"taskName": "Test",
"suppressTaskName": true,
"isTestCommand": true,
"args": ["test/test"],
} ]
}
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ $(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp
$(TST_DIR)/%.o: $(TST_DIR)/%.cpp
@echo Building $@
@$(CC) -c $(CFLAGS) $(INCLUDES) $< -o $@
@echo Done.

$(TARGET): $(OBJ)
@echo Building $@
Expand Down

0 comments on commit b1ce6b9

Please sign in to comment.