From 5d1fff7af6f77c9bf0d46572c7af563cd9fc55b3 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sat, 19 Feb 2011 15:21:52 +0100 Subject: Initial import --- CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..262ee3b --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,13 @@ +cmake_minimum_required(VERSION 2.6) + +PROJECT(netifd C) +ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3) + +SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "") + +IF(DEBUG) + ADD_DEFINITIONS(-DDEBUG -O0) +ENDIF() + +ADD_EXECUTABLE(netifd main.c interface.c config.c device.c bridge.c vlan.c ubus.c system-dummy.c) +TARGET_LINK_LIBRARIES(netifd ubox ubus uci) -- cgit v1.2.1