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.
 
 

25 lines
680 B

set(CNAME "openvpn-auth-ldap")
set(VERSION 0.01)
project(${CNAME} C)
cmake_minimum_required(VERSION 2.6)
include(CTest)
set(CMAKE_INSTALL_PREFIX "/usr")
set(INSTALL_LIB "${CMAKE_INSTALL_PREFIX}/lib/openvpn")
list(APPEND CMAKE_C_FLAGS "-Wall -Wextra -pedantic")
find_library(LIBLDAP NAMES "ldap")
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}")
message(STATUS "")
message(STATUS "ldap: ${LIBLDAP}")
add_subdirectory (src)
add_subdirectory (tests)