project(NAME C)
cmake_minimum_required(VERSION 2.6)

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

# load regression tests
enable_testing()
add_subdirectory(tests)

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