filesystem mount options in uci as optional parameter
[project/mountd.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.6)
2
3 PROJECT(mountd C)
4 ADD_DEFINITIONS(-Os -ggdb -Wall -Werror --std=gnu99 -Wmissing-declarations)
5
6 SET(CMAKE_SHARED_LIBRARY_LINK_C_FLAGS "")
7
8 ADD_EXECUTABLE(mountd main.c log.c sys.c autofs.c mount.c timer.c signal.c ucix.c led.c fs.c ucix.c)
9 TARGET_LINK_LIBRARIES(mountd uci ubox)
10
11 INSTALL(TARGETS mountd
12         RUNTIME DESTINATION sbin
13 )