/rusxmms/librcd

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcd

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2010-07-16 07:45:04 UTC
  • Revision ID: csa@dside.dyndns.org-20100716074504-kc3hwad45klghz03
CMake scripts to build under Windows

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
cmake_minimum_required(VERSION 2.6.3)
 
2
project(librcd)
 
3
 
 
4
set(CMAKE_BUILD_TYPE RELEASE)
 
5
 
 
6
if (NOT WIN32)
 
7
    message(FATAL_ERROR "Windows only, use autotools to build under POSIX-capable systems")
 
8
endif(NOT WIN32)
 
9
 
 
10
add_subdirectory(src)
 
11