Add DLL copy commands for armnnTfLiteParser.dll

Change-Id: Ibf4448bc898d2265ddba1be038d8ebc757bcdc2e
diff --git a/cmake/AddDllCopyCommands.cmake b/cmake/AddDllCopyCommands.cmake
index b0f4ee0..74f6f6f 100644
--- a/cmake/AddDllCopyCommands.cmake
+++ b/cmake/AddDllCopyCommands.cmake
@@ -55,6 +55,12 @@
                                         "${PROTOBUF_ROOT}/bin/libprotobuf.dll")
         endif()
 
+        # armnnTfLiteParser.dll
+        if ("armnnTfLiteParser" IN_LIST target_deps)
+            addDllCopyCommand(${target} "$<TARGET_FILE_DIR:armnnTfLiteParser>/armnnTfLiteParser.dll"
+                                        "$<TARGET_FILE_DIR:armnnTfLiteParser>/armnnTfLiteParser.dll")
+        endif()
+
         # caffe.dll and its dependencies
         listContainsRegex(includeCaffeDlls "${target_deps}" "caffe")
         if (${includeCaffeDlls})