diff options
author | Petre Eftime <[email protected]> | 2016-09-06 16:59:33 +0300 |
---|---|---|
committer | Petre Eftime <[email protected]> | 2016-09-09 17:21:00 +0300 |
commit | 80e1f741597aec0d2874904f28cce3352bd95d64 (patch) | |
tree | 2d7932feca6b6b79ce0148b946469426958ab18a /examples/CMakeLists.txt | |
parent | 5d9cd1f52eab6420c293677362c0fc05a2831032 (diff) |
Add BluetoothUUID class
Signed-off-by: Petre Eftime <[email protected]>
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r-- | examples/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index e89046f0..271b5905 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -30,7 +30,10 @@ set_target_properties(notifications PROPERTIES CXX_STANDARD 11) - +add_executable (uuid uuid.cpp) +set_target_properties(uuid + PROPERTIES + CXX_STANDARD 11) include_directories(${PROJECT_SOURCE_DIR}/api) @@ -39,3 +42,4 @@ target_link_libraries (checkinit tinyb) target_link_libraries (asynctinyb tinyb) target_link_libraries (esstinyb tinyb) target_link_libraries (notifications tinyb) +target_link_libraries (uuid tinyb) |