You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
520 B

9 years ago
set(CNAME "openvpn-auth-ldap")
set(VERSION 0.01)
9 years ago
9 years ago
project(${CNAME} C)
cmake_minimum_required(VERSION 2.6)
9 years ago
9 years ago
include(CTest)
9 years ago
9 years ago
set(CMAKE_INSTALL_PREFIX "/usr")
set(INSTALL_LIB "${CMAKE_INSTALL_PREFIX}/lib/openvpn")
9 years ago
9 years ago
message(STATUS "------------------------------------------")
message(STATUS "Build type is: ${CMAKE_BUILD_TYPE}")
message(STATUS "")
message(STATUS "Install prefix: ${CMAKE_INSTALL_PREFIX}")
message(STATUS "Library directory: ${INSTALL_LIB}")
add_subdirectory (src)
9 years ago
add_subdirectory (tests)