Files
DataPath/samples/single-process-ipc/CMakeLists.txt
T
Michael Fabian 'Xaymar' Dirks 8a4df2cc3a samples/single-process-ipc: Add single process IPC sample
A basic sample to show the layout required to do any IPC work for both client and server. It does not have a multi-process architecture and instead relies on threading, but this already shows the speed that should be expected when using DataPath.
2019-01-08 03:06:08 +01:00

26 lines
359 B
CMake

cmake_minimum_required(VERSION 3.5)
project(sample_single-process-ipc)
SET(PROJECT_SOURCES
"${PROJECT_SOURCE_DIR}/main.cpp"
)
SET(PROJECT_LIBRARIES
datapath
)
# Includes
include_directories(
${PROJECT_SOURCE_DIR}
)
# Building
ADD_EXECUTABLE(${PROJECT_NAME}
${PROJECT_SOURCES}
)
# Linking
TARGET_LINK_LIBRARIES(${PROJECT_NAME}
${PROJECT_LIBRARIES}
)