10 lines
206 B
CMake
10 lines
206 B
CMake
cmake_minimum_required(VERSION 2.6)
|
|
|
|
ADD_DEFINITIONS(-I..)
|
|
|
|
ADD_EXECUTABLE(server server.c)
|
|
TARGET_LINK_LIBRARIES(server ubus ubox)
|
|
|
|
ADD_EXECUTABLE(client client.c)
|
|
TARGET_LINK_LIBRARIES(client ubus ubox)
|
|
|