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

add_executable(hello hello.c)
target_link_libraries(hello ${SYST_LIBRARIES})

install(TARGETS hello
    RUNTIME DESTINATION bin
    LIBRARY DESTINATION bin
)