10 lines
200 B
CMake
10 lines
200 B
CMake
cmake_minimum_required(VERSION 3.22.1)
|
|
|
|
project(proj)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ../)
|
|
add_subdirectory(server_proj server_proj)
|
|
add_subdirectory(client_proj client_proj)
|
|
|
|
# cmake ..
|
|
# cmake --build . |