Author: shuston
Date: Tue Apr 21 20:32:17 2009
New Revision: 767286
URL: http://svn.apache.org/viewvc?rev=767286&view=rev
Log:
Add the acl plugin
Modified:
qpid/branches/cmake/qpid/cpp/src/CMakeLists.txt
Modified: qpid/branches/cmake/qpid/cpp/src/CMakeLists.txt
URL:
http://svn.apache.org/viewvc/qpid/branches/cmake/qpid/cpp/src/CMakeLists.txt?rev=767286&r1=767285&r2=767286&view=diff
==============================================================================
--- qpid/branches/cmake/qpid/cpp/src/CMakeLists.txt (original)
+++ qpid/branches/cmake/qpid/cpp/src/CMakeLists.txt Tue Apr 21 20:32:17 2009
@@ -222,6 +222,22 @@
LINK_FLAGS -Wl,--no-undefined)
endif (QPID_HAS_XML)
+# Build the ACL plugin
+set (acl_SOURCES
+ qpid/acl/Acl.cpp
+ qpid/acl/Acl.h
+ qpid/acl/AclData.cpp
+ qpid/acl/AclData.h
+ qpid/acl/AclPlugin.cpp
+ qpid/acl/AclReader.cpp
+ qpid/acl/AclReader.h
+ )
+ add_library (acl SHARED ${acl_SOURCES})
+ target_link_libraries (acl qpidbroker)
+ set_target_properties (acl PROPERTIES
+ VERSION ${qpidc_version}
+ LINK_FLAGS -Wl,--no-undefined)
+
# Check for optional cluster support requirements
include (cluster.cmake)
---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project: http://qpid.apache.org
Use/Interact: mailto:[email protected]