From ba3ef18cb6117c49fcdbf177dce5991d6d679cbc Mon Sep 17 00:00:00 2001 From: Jan Eilers Date: Fri, 25 Sep 2020 08:36:44 +0100 Subject: 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 Change-Id: I9db7cd9a133a81262cbf79f04fb419ab97b88ea8 --- tests/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests') 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}) -- cgit v1.2.1