diff options
author | Petre Eftime <[email protected]> | 2016-05-25 13:58:06 +0300 |
---|---|---|
committer | Petre Eftime <[email protected]> | 2016-07-01 15:11:25 +0300 |
commit | a1a2747bb6448273e08e46a9852d83dbb735443c (patch) | |
tree | dc81991e00c1fc02f059b8a2a0f9c8e3747257de /examples/CMakeLists.txt | |
parent | 04f2c650964f5a9fa55dc9a6b87cdd69f0a2b2a9 (diff) |
Add notifications example
Signed-off-by: Petre Eftime <[email protected]>
Diffstat (limited to 'examples/CMakeLists.txt')
-rw-r--r-- | examples/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 5b523f8c..e89046f0 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -25,9 +25,17 @@ set_target_properties(esstinyb PROPERTIES CXX_STANDARD 11) +add_executable (notifications notifications.cpp) +set_target_properties(notifications + 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) +target_link_libraries (notifications tinyb) |