diff options
Diffstat (limited to 'asn1/cmip')
-rw-r--r-- | asn1/cmip/CMakeLists.txt | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/asn1/cmip/CMakeLists.txt b/asn1/cmip/CMakeLists.txt index 1fc4448aed..939de70890 100644 --- a/asn1/cmip/CMakeLists.txt +++ b/asn1/cmip/CMakeLists.txt @@ -21,3 +21,43 @@ # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # +set( PROTOCOL_NAME cmip ) + +set( PROTO_OPT ) + +set( EXPORT_FILES + ${PROTOCOL_NAME}-exp.cnf +) + +set( EXT_ASN_FILE_LIST_LATE + ../x721/Attribute-ASN1Module.asn + ../ros/Remote-Operations-Information-Objects.asn + ../ros/Remote-Operations-Generic-ROS-PDUs.asn +) + +set( ASN_FILE_LIST + CMIP-1.asn + CMIP-A-ABORT-Information.asn + CMIP-A-ASSOCIATE-Information.asn +) + +set( EXTRA_DIST + ${ASN_FILE_LIST} + packet-${PROTOCOL_NAME}-template.c + packet-${PROTOCOL_NAME}-template.h + ${PROTOCOL_NAME}.cnf +) + +set( SRC_FILES + ${EXTRA_DIST} + ${EXT_ASN_FILE_LIST} +) + +set( A2W_FLAGS -b ) + +set( EXTRA_CNF + acse-exp.cnf +) + +ASN2WRS() + |