summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: ee3367f6aabd5b9fed362542dd68d0258a012bbd (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 2.6 FATAL_ERROR)

project(cssh C)

set( CMAKE_C_FLAGS "-std=c99 -Wall -pedantic -Wfatal-errors -Werror -fPIC -O0" )

add_subdirectory(src)

add_custom_target(distclean
	COMMAND git clean -d -f -x
)