aboutsummaryrefslogtreecommitdiffstats
path: root/remote-process/CMakeLists.txt
blob: d5bda0a49882fa06994689fe5339e603007f78d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
add_executable(remote-process main.cpp)

# TODO: separate remote-processor's includes in half (public/private)
# And use only public headers here
include_directories(
    "${PROJECT_SOURCE_DIR}/remote-processor"
    "${PROJECT_SOURCE_DIR}/utility")

target_link_libraries(remote-process remote-processor pfw_utility)

install(TARGETS remote-process RUNTIME DESTINATION bin)