Working version with better class distribution
[pingcheck] / CMakeLists.txt
1 # project definitions
2 project( libpingcheck CXX )
3 set( VERSION 0.0.1 )
4 cmake_minimum_required( VERSION 2.6 )
5
6 # set the directory where the executable will be placed
7 set( CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} )
8
9 # set the directory where the make install places the executable
10 #set( CMAKE_INSTALL_PREFIX ${CMAKE_CURRENT_BINARY_DIR} )
11
12 # more build in the source folder
13 add_subdirectory( src )