blob: 80fd177d84e9cc40a963e443f9356450d5835180 (
plain)
1
2
3
4
5
6
7
8
9
10
|
add_executable(remote-process main.cpp) # TODO: WIN32 ?
# TODO: separate remote-processor's includes in half (public/private)
# And use only public headers here
include_directories("${PROJECT_SOURCE_DIR}/remote-processor")
include_directories("${PROJECT_SOURCE_DIR}/utility")
target_link_libraries(remote-process remote-processor pfw_utility)
install(TARGETS remote-process RUNTIME DESTINATION bin)
|