2aff36a274
Define _GNU_SOURCE in the CFLAGS. Update the README. Remove the duplicate Gentoo init script ndhc.sh that is in the root. Remove DESIGN -- it's outdated.
13 lines
407 B
CMake
13 lines
407 B
CMake
project (ndhcp)
|
|
|
|
cmake_minimum_required (VERSION 2.6)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -s -std=gnu99 -pedantic -Wall -lcap -D_GNU_SOURCE -DHAVE_CLEARENV -DLINUX")
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_C_FLAGS} -s -std=gnu99 -pedantic -Wall -lcap -D_GNU_SOURCE -DHAVE_CLEARENV -DLINUX")
|
|
|
|
include_directories("${PROJECT_SOURCE_DIR}/ncmlib")
|
|
add_subdirectory(ncmlib)
|
|
|
|
add_subdirectory(ifchd)
|
|
add_subdirectory(ndhc)
|