Change folder name build to buildjson

- If change to use meson build, meson will automake build folder,
  and this will overwrite the origin folder and miss the buildjson
  files.

Signed-off-by: Harvey Wu <Harvey.Wu@quantatw.com>
Change-Id: Idfc4852bf56ed8f6c04e1b4be78ce40e08539132
diff --git a/test/Makefile.am b/test/Makefile.am
index 7cb8014..f978fa2 100644
--- a/test/Makefile.am
+++ b/test/Makefile.am
@@ -78,4 +78,4 @@
 pid_json_unittest_LDADD = $(top_builddir)/pid/buildjson.o
 
 json_parse_unittest_SOURCES = json_parse_unittest.cpp
-json_parse_unittest_LDADD = $(top_builddir)/build/buildjson.o
+json_parse_unittest_LDADD = $(top_builddir)/buildjson/buildjson.o
diff --git a/test/json_parse_unittest.cpp b/test/json_parse_unittest.cpp
index 3345163..f8967de 100644
--- a/test/json_parse_unittest.cpp
+++ b/test/json_parse_unittest.cpp
@@ -1,4 +1,4 @@
-#include "build/buildjson.hpp"
+#include "buildjson/buildjson.hpp"
 #include "errors/exception.hpp"
 
 #include <gmock/gmock.h>