From d25584649a952ba68e9da0c7089f6d81646d9221 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=84=B8=ED=9D=AC/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Principal=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Mon, 9 Apr 2018 10:36:32 +0900 Subject: [PATCH] Introduce NNFW_GTEST_LIBS for test programs (#497) This will introduce NNFW_GTEST_LIBS variables having gtest libraries for test programs Signed-off-by: SaeHie Park --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4697b3b..b4dfe61 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -118,6 +118,8 @@ if("${TARGET_OS}" STREQUAL "tizen" AND BUILD_IS_NATIVE) include_directories(${GTEST_INCLUDE_DIR}) endif() +# gtest libs +set(NNFW_GTEST_LIBS libgtest.a libgtest_main.a pthread) add_subdirectory(externals) add_subdirectory(tools) -- 2.7.4