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.
18 lines
495 B
18 lines
495 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") |
|
|
|
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)
|
|
|