diff options
author | gregory guy <[email protected]> | 2019-04-03 18:19:30 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-04-07 20:39:07 +0200 |
commit | 961f36bb7b23ba3ff6606743ade216f7f56c33da (patch) | |
tree | 2225ef2e46a2878d29d160e51559fc655cd89659 /acl-updater/plugin | |
parent | ef47d91dd30f750fffb2d1c08f24f848d0bb26b4 (diff) | |
download | kcmldapcontroller-961f36bb7b23ba3ff6606743ade216f7f56c33da.tar.gz kcmldapcontroller-961f36bb7b23ba3ff6606743ade216f7f56c33da.zip |
conversion to the cmake building system
Signed-off-by: gregory guy <[email protected]>
(cherry picked from commit 307a1a53261669dc8d1d2ee031a8927f64ddb27a)
Diffstat (limited to 'acl-updater/plugin')
-rw-r--r-- | acl-updater/plugin/CMakeLists.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/acl-updater/plugin/CMakeLists.txt b/acl-updater/plugin/CMakeLists.txt new file mode 100644 index 0000000..d9bf81d --- /dev/null +++ b/acl-updater/plugin/CMakeLists.txt @@ -0,0 +1,31 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} + ${TDE_INCLUDE_DIR}/tde + ${KRB5_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### slapi-acl-manager (module) + +tde_add_library( slapi-acl-manager MODULE + + SOURCES + interface.c + plugin.cpp + LINK + tdecore-shared + ${TDELDAP_LIBRARIES} + ${KRB5_LIBRARIES} + ${SLAPI_LIBRARIES} + + DESTINATION ${LIB_INSTALL_DIR} +) |