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