c87e8434bf9e7816439c17d9fb401166a4562eb3
[sim/o1-interface.git] / ntsimulator / src / generic-notifications / CMakeLists.txt
1 set (NOTIFICATIONS_SOURCES
2     generic-notifications.c
3 )
4
5 include_directories(
6     "/usr/include/x86_64-linux-gnu"
7     "/usr/local/include/cjson"
8     "/usr/local/include/libyang"
9 )
10
11 add_executable(generic-notifications ${NOTIFICATIONS_SOURCES})
12 target_link_libraries(generic-notifications utils)
13 target_link_libraries(generic-notifications sysrepo)
14 target_link_libraries(generic-notifications m)
15 target_link_libraries(generic-notifications curl)
16 target_link_libraries(generic-notifications cjson)
17 target_link_libraries(generic-notifications yang)
18
19 install(TARGETS generic-notifications DESTINATION ${CMAKE_INSTALL_BINDIR})