From 3fac6d8f4e0d65a02a478dd32947c74b82b1b7b5 Mon Sep 17 00:00:00 2001 From: David Wagner Date: Mon, 17 Feb 2014 15:14:15 +0100 Subject: Add CMake Makefiles 1) Generate the Makefiles with "cmake"; 2) compile all targets with "make". Signed-off-by: David Wagner --- remote-process/CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 remote-process/CMakeLists.txt (limited to 'remote-process') diff --git a/remote-process/CMakeLists.txt b/remote-process/CMakeLists.txt new file mode 100644 index 0000000..7f8a5ee --- /dev/null +++ b/remote-process/CMakeLists.txt @@ -0,0 +1,8 @@ +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) -- cgit v1.1