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>2012-10-22 22:03:53 +0400
committerFelix Fietkau <nbd@openwrt.org>2012-10-22 22:03:53 +0400
commit9afe120530838903c538a06921891bd862218267 (patch)
tree5cf46d05cebfafb14f3af5459b9b6897e80e7378 /CMakeLists.txt
parentdb38b74ac60edf213f0de1a5e6e0d5ab027b4cae (diff)
add -Wmissing-declarations to cflags
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 93ee787..00b3b41 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 2.6)
PROJECT(ubox C)
-ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3)
+ADD_DEFINITIONS(-Os -Wall -Werror --std=gnu99 -g3 -Wmissing-declarations)
OPTION(BUILD_LUA "build Lua plugin" ON)