This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
cmake_minimum_required(VERSION 3.10)
project(SimpleRPCExample CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
# Папка с исходниками
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/src)
# Сервер
add_executable(server
src/server.cpp
src/MyService.cpp
src/MyService.skeleton.cpp
)
# Клиент
add_executable(client
src/client.cpp
src/MyService.proxy.cpp