grove: add missing light sensor example to examples/CMakeLists.txt

Signed-off-by: Sarah Knepper <sarah.knepper@intel.com>
This commit is contained in:
sknepper 2015-01-07 15:56:31 -08:00
parent 0a8f46a506
commit c170b01fc2

View File

@ -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})