CMAKE_MINIMUM_REQUIRED(VERSION 2.6) PROJECT(bpdyndnsd) set(MAJOR_VERSION 1) set(MINOR_VERSION 1) set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION}) # if you don't want the full compiler output, remove the following line SET(CMAKE_VERBOSE_MAKEFILE ON) # add definitions, compiler switches, etc. ADD_DEFINITIONS(-Wall -O2) add_subdirectory(src)