From c170b01fc2edac087ad690b1a29950515c7a8018 Mon Sep 17 00:00:00 2001 From: sknepper Date: Wed, 7 Jan 2015 15:56:31 -0800 Subject: [PATCH] grove: add missing light sensor example to examples/CMakeLists.txt Signed-off-by: Sarah Knepper --- examples/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 74f2cc1b..909271c5 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,6 @@ add_executable (hmc5883l-example hmc5883l.cxx) add_executable (groveled-example groveled.cxx) +add_executable (grovelight-example grovelight.cxx) add_executable (grovetemp-example grovetemp.cxx) add_executable (grovebutton-example grovebutton.cxx) add_executable (groverotary-example groverotary.cxx) @@ -90,6 +91,7 @@ include_directories (${PROJECT_SOURCE_DIR}/src/itg3200) target_link_libraries (hmc5883l-example hmc5883l ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries (groveled-example grove ${CMAKE_THREAD_LIBS_INIT}) +target_link_libraries (grovelight-example grove ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries (grovetemp-example grove ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries (grovebutton-example grove ${CMAKE_THREAD_LIBS_INIT}) target_link_libraries (groverotary-example grove ${CMAKE_THREAD_LIBS_INIT})