From 340e2fb5d252211791edb023319f2fc226d58fd3 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Mon, 24 Oct 2022 13:56:32 +0200 Subject: [PATCH] Update tasks.json --- .vscode/tasks.json | 9 +++------ test/mnist_neuron_io.c | 1 + 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 5ddf58e..ff27912 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -30,25 +30,22 @@ }, { "label": "build-all", - "command": "${workspaceFolder}/make.sh", + "command": "make", "args": [ - "build", "all" ] }, { "label": "build-mnist", - "command": "${workspaceFolder}/make.sh", + "command": "make", "args": [ - "build", "mnist" ] }, { "label": "build-cnn", - "command": "${workspaceFolder}/make.sh", + "command": "make", "args": [ - "build", "cnn" ] }, diff --git a/test/mnist_neuron_io.c b/test/mnist_neuron_io.c index e93b95a..b36702d 100644 --- a/test/mnist_neuron_io.c +++ b/test/mnist_neuron_io.c @@ -1,5 +1,6 @@ #include #include +#include #include #include