Skip to content

Commit 470604b

Browse files
committed
Merge branch 'hotfix/libraries'
2 parents 9938420 + 1082ca0 commit 470604b

File tree

5 files changed

+10199
-3
lines changed

5 files changed

+10199
-3
lines changed

Makefile

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
default_target: all
22

33
.PHONY: all
4-
all: clean build test clean
4+
all: clean build deploy test clean
55

66
.PHONY: cmake
77
cmake:
@@ -27,3 +27,8 @@ clean:
2727
@rm -rf $(CURDIR)/build/*
2828
@rm -rf $(CURDIR)/.pioenvs/*
2929
@rm -rf $(CURDIR)/.pio/*
30+
31+
.PHONY: deploy
32+
deploy:
33+
cp $(CURDIR)/external/fakeit/fakeit-repo/single_header/standalone/* $(CURDIR)/src
34+

external/fakeit/fakeit-repo

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Subproject commit cb39d8a053876f74dfeed66dd335d3041f142095

src/ArduinoFake.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#include <cstring>
99
#include <cstdint>
1010
#include <stdexcept>
11-
#include <fakeit.hpp>
11+
#include "fakeit.hpp"
1212

1313
#include "arduino/Arduino.h"
1414

src/FunctionFake.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#pragma once
22

3-
#include <fakeit.hpp>
3+
#include "fakeit.hpp"
44

55
struct FunctionFake
66
{

0 commit comments

Comments
 (0)