aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJan Eilers <jan.eilers@arm.com>2020-09-25 08:36:44 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2020-09-29 21:46:41 +0000
commitba3ef18cb6117c49fcdbf177dce5991d6d679cbc (patch)
treecede43ef02deb3271b0da7172b410d29052999b6 /tests
parent64f787515e8da3cfec089b62e265c4a90543e2f2 (diff)
downloadarmnn-ba3ef18cb6117c49fcdbf177dce5991d6d679cbc.tar.gz
IVGCVSW-5295 Change fmt to be a header-only interface library
* Fix non-virtual-dtor warnings in fmt * Fix wrong fmt include in TfParser * Make fmt work in nn-driver * Make fmt a header-only interface library * Link fmt where necessary Signed-off-by: Jan Eilers <jan.eilers@arm.com> Change-Id: I9db7cd9a133a81262cbf79f04fb419ab97b88ea8
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 5bbec11158..b3496b42ee 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -16,6 +16,9 @@ target_include_directories(inferenceTest PRIVATE ../src/armnnUtils)
target_include_directories(inferenceTest PRIVATE ../src/backends)
target_include_directories(inferenceTest PRIVATE ../third-party/stb)
+# Link fmt third-party library
+target_link_libraries(inferenceTest fmt)
+
if(BUILD_CAFFE_PARSER)
macro(CaffeParserTest testName sources)
add_executable_ex(${testName} ${sources})