Add abillity to add custom crypto files.

Change-Id: I6c5b1cdb0a90f7604bdde088332c171332b43dcc
Reviewed-on: https://code.wireshark.org/review/3945
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
AndersBroman 2014-09-01 15:54:15 +02:00 committed by Anders Broman
parent 85734de534
commit c3439329fd
2 changed files with 5 additions and 0 deletions

View File

@ -52,6 +52,7 @@ set(CRYPT_FILES
crypt/airpdcap_debug.c
crypt/airpdcap_rijndael.c
crypt/airpdcap_tkip.c
${CUSTOM_CRYPT_SRC}
)
source_group(crypt FILES ${CRYPT_FILES})

View File

@ -26,4 +26,8 @@ set(CUSTOM_DISSECTOR_SRC
set(CUSTOM_DIRTY_ASN1_DISSECTOR_SRC
# dissectors/packet-foo.c
)
set(CUSTOM_CRYPT_SRC
# crypt/foo.c
)