summaryrefslogtreecommitdiffstats
path: root/CMakeLists.txt
blob: 3738ce1ff7c1f1b102b09e705672ae9cf30d2096 (plain)
1
2
3
4
5
6
7
8
9
10
11
cmake_minimum_required(VERSION 2.6.3)
project(librcd)

set(CMAKE_BUILD_TYPE RELEASE)

if (NOT WIN32)
    message(FATAL_ERROR "Windows only, use autotools to build under POSIX-capable systems")
endif(NOT WIN32)

add_subdirectory(src)