ubus/examples/CMakeLists.txt

11 lines
219 B
Text
Raw Normal View History

2012-10-01 14:54:54 +02:00
cmake_minimum_required(VERSION 2.6)
ADD_DEFINITIONS(-I..)
2012-10-01 15:03:26 +02:00
ADD_EXECUTABLE(server server.c)
TARGET_LINK_LIBRARIES(server ubus ubox blobmsg_json)
2012-10-01 15:03:26 +02:00
ADD_EXECUTABLE(client client.c)
TARGET_LINK_LIBRARIES(client ubus ubox)
2012-10-01 14:54:54 +02:00