1include_directories(
2     ${SYST_INCLUDE_DIRS}
3)
4
5add_executable(systclient systclient.c othersource.c)
6target_link_libraries(systclient ${SYST_LIBRARIES})
7
8install(TARGETS systclient
9    RUNTIME DESTINATION bin
10    LIBRARY DESTINATION bin
11)