Commit 4952fb6f authored by jan.koester's avatar jan.koester
Browse files

initial commit

parent 3666b817
Loading
Loading
Loading
Loading

CMakeLists.txt

0 → 100644
+21 −0
Original line number Diff line number Diff line
project(ssod CXX)
cmake_minimum_required(VERSION 3.0)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")

find_package(libnetplus REQUIRED)
find_package(httppp REQUIRED)
find_package(json-c REQUIRED)
find_package(OpenLDAP REQUIRED)

set(SSOD_USER "www-data" CACHE STRING "run ssod as user")
set(SSOD_GROUP "www-data" CACHE STRING "run ssod as group")
set(ADMINCTL_BIND_DIR "/run/ssod" CACHE STRING "dir for adminctl socket")

configure_file(config.h.in config.h)

include_directories(
    ${CMAKE_BINARY_DIR}
)

add_subdirectory(src)

backends/ldap/ldap.cpp

0 → 100644
+1 −0
Original line number Diff line number Diff line
 

backends/ldap/ldap.h

0 → 100644
+1 −0
Original line number Diff line number Diff line
 
+1 −0
Original line number Diff line number Diff line
 

backends/pgsql/pgsql.h

0 → 100644
+1 −0
Original line number Diff line number Diff line
 
Loading