diff options
author | Henry Bruce <[email protected]> | 2016-06-22 22:46:23 -0700 |
---|---|---|
committer | Henry Bruce <[email protected]> | 2016-06-29 11:35:25 -0700 |
commit | 34bd85eec952b8031dedd58882a9bcfeef57d848 (patch) | |
tree | 683a6d5ad1c31232df949db2cf16268a5e5adac0 /examples/CMakeLists.txt | |
parent | 5b1524bc06a3d4cfea0dab9690880040499813c8 (diff) |
examples: Added environmental sensing services test app
Signed-off-by: Henry Bruce <[email protected]>
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r-- | examples/CMakeLists.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index b1c47d1d..5b523f8c 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -20,8 +20,14 @@ set_target_properties(asynctinyb PROPERTIES CXX_STANDARD 11) +add_executable (esstinyb esstinyb.cpp) +set_target_properties(esstinyb + PROPERTIES + CXX_STANDARD 11) + include_directories(${PROJECT_SOURCE_DIR}/api) target_link_libraries (hellotinyb tinyb) target_link_libraries (checkinit tinyb) target_link_libraries (asynctinyb tinyb) +target_link_libraries (esstinyb tinyb) |