aboutsummaryrefslogtreecommitdiff
path: root/examples/client/CMakeLists.txt
blob: 6362dde5423c72d41b229876830d543f4de1ad14 (plain)
1
2
3
4
5
6
7
8
9
10
11
include_directories(
     ${SYST_INCLUDE_DIRS}
)

add_executable(systclient systclient.c othersource.c)
target_link_libraries(systclient ${SYST_LIBRARIES})

install(TARGETS systclient
    RUNTIME DESTINATION bin
    LIBRARY DESTINATION bin
)