IVGCVSW-5389 'TfLiteDelegate: Implement the FullyConnected operator'

* Added FullyConnected operator support to delegate

Signed-off-by: Sadik Armagan <sadik.armagan@arm.com>
Change-Id: Iae9c0980a4bfd6aa4d90f107f329dfa782baeefe
diff --git a/delegate/CMakeLists.txt b/delegate/CMakeLists.txt
index e05a0ba..05ec851 100644
--- a/delegate/CMakeLists.txt
+++ b/delegate/CMakeLists.txt
@@ -95,16 +95,18 @@
         src/test/ElementwiseBinaryTestHelper.hpp
         src/test/ElementwiseUnaryTest.cpp
         src/test/ElementwiseUnaryTestHelper.hpp
+        src/test/FullyConnectedTest.cpp
+        src/test/FullyConnectedTestHelper.hpp
         src/test/Pooling2dTest.cpp
         src/test/Pooling2dTestHelper.hpp
         src/test/QuantizationTest.cpp
         src/test/QuantizationTestHelper.hpp)
 
 add_executable(DelegateUnitTests ${armnnDelegate_unittest_sources})
-target_include_directories(DelegateUnitTests PRIVATE src)
 target_include_directories(DelegateUnitTests PRIVATE third-party)
 
 target_link_libraries(DelegateUnitTests armnnDelegate)
+target_link_libraries(DelegateUnitTests Armnn::armnnUtils)
 
 target_include_directories(DelegateUnitTests
         PRIVATE