File: CMakeLists.txt

package info (click to toggle)
librcd 0.1.14-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,732 kB
  • sloc: sh: 10,686; ansic: 1,589; makefile: 35
file content (11 lines) | stat: -rw-r--r-- 234 bytes parent folder | download
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)