project(NAME CXX)
cmake_minimum_required(VERSION 2.6)

# rules to create an executable
add_executable(NAME main.cpp)

# load regression tests
enable_testing()
add_subdirectory(tests)

# rules to install the application
install(TARGETS NAME RUNTIME DESTINATION bin)
