Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt - git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ef71b224ecde5438d3482899a943f1a614806e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
cmake_minimum_required(VERSION 2.6)

PROJECT(ubox C)
ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3)

IF(APPLE)
  INCLUDE_DIRECTORIES(/opt/local/include)
  LINK_DIRECTORIES(/opt/local/lib)
ENDIF()

SET(SOURCES avl.c blob.c blobmsg.c uloop.c usock.c)

ADD_LIBRARY(ubox SHARED ${SOURCES})
ADD_LIBRARY(blobmsg_json SHARED blobmsg_json.c)

TARGET_LINK_LIBRARIES(blobmsg_json ubox json)

SET(CMAKE_INSTALL_PREFIX /usr)

FILE(GLOB headers *.h)
INSTALL(FILES ${headers}
	DESTINATION include/libubox
)
INSTALL(TARGETS ubox blobmsg_json
	LIBRARY DESTINATION lib
)