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

git.openwrt.org/project/libubox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2011-01-31 22:58:17 +0300
committerFelix Fietkau <nbd@openwrt.org>2011-01-31 22:58:17 +0300
commitd1c5aa705a0c66bc4c713eff70563011ba5c5673 (patch)
tree8d8e52cfb75240d24fb97059dc798942fd8d01fb /CMakeLists.txt
parent3205134afd524dafaeada8fc840ee6078e9aee49 (diff)
remove unl
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt7
1 files changed, 0 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 752a7bf..cc473c4 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,16 +4,9 @@ PROJECT(ubox C)
ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3)
SET(SOURCES avl.c blob.c blobmsg.c hash.c uhtbl.c uloop.c)
-IF("${CMAKE_SYSTEM}" MATCHES "Linux")
- SET(SOURCES ${SOURCES} unl.c)
-ENDIF("${CMAKE_SYSTEM}" MATCHES "Linux")
ADD_LIBRARY(ubox SHARED ${SOURCES})
-IF("${CMAKE_SYSTEM}" MATCHES "Linux")
- TARGET_LINK_LIBRARIES(ubox nl-tiny)
-ENDIF("${CMAKE_SYSTEM}" MATCHES "Linux")
-
SET(CMAKE_INSTALL_PREFIX /usr)
FILE(GLOB headers *.h)