From: Segwon Date: Tue, 7 Nov 2017 07:06:19 +0000 (+0900) Subject: cmake: fixed to wrong variable name for include file. X-Git-Tag: submit/tizen_4.0/20171220.125806^2~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F43%2F159143%2F1;p=platform%2Fcore%2Fapi%2Fperipheral-io.git cmake: fixed to wrong variable name for include file. Change-Id: I570a465fc2972e3ca2fb0d0039a7232874ba1aa5 Signed-off-by: Segwon --- diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 48799da..5135302 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -11,8 +11,8 @@ ENDFOREACH() SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${EXTRA_CFLAGS} -Wall -fPIE") SET(CMAKE_EXE_LINKER_FLAGS "-Wl,--as-needed -pie") -SET(UTC_INCLUDE_DIR ./include) -INCLUDE_DIRECTORIES(${UTC_INCLUDE_DIR}) +SET(TEST_INCLUDE_DIR ./include) +INCLUDE_DIRECTORIES(${TEST_INCLUDE_DIR}) AUX_SOURCE_DIRECTORY(src test_sources) FOREACH(src ${test_sources})