From 3bdbb9874f73d024f43893626dbe61a32c9c799b Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Fri, 16 Jul 2010 09:45:04 +0200 Subject: CMake scripts to build under Windows --- CMakeLists.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..3738ce1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,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) + -- cgit v1.2.3