Fix 'occurred' typo
[bpdyndnsd] / CMakeLists.txt
1 CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
2
3 PROJECT(bpdyndnsd)
4
5 set(MAJOR_VERSION 1)
6 set(MINOR_VERSION 1)
7 set(VERSION_STRING ${MAJOR_VERSION}.${MINOR_VERSION})
8
9 # if you don't want the full compiler output, remove the following line
10 SET(CMAKE_VERBOSE_MAKEFILE ON)
11
12 # add definitions, compiler switches, etc.
13 ADD_DEFINITIONS(-Wall -O2)
14
15 add_subdirectory(src)