aboutsummaryrefslogtreecommitdiffstats
path: root/epan/crypt
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2019-01-01 12:17:55 -0500
committerMichael Mann <mmann78@netscape.net>2019-02-18 00:49:51 +0000
commite797e751746858eed7231767ac3e244e46ea5840 (patch)
tree16226f6bea46af20b532c1dda9ba08db7bb7521a /epan/crypt
parent9f75af5b2596c08fc32484d18d80c09245f177e8 (diff)
Include epan header files in VS solution.
Add header files lists to add_library() so that Visual Studio can pick them up and include them in a "Header Files" folder for easier navigation within Visual Studio. Change-Id: I7cd8e39550f4db67eed8205593060ae8b4a5b1b9 Reviewed-on: https://code.wireshark.org/review/31289 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/crypt')
-rw-r--r--epan/crypt/CMakeLists.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/epan/crypt/CMakeLists.txt b/epan/crypt/CMakeLists.txt
index 3d3eea91d1..d534fa6a64 100644
--- a/epan/crypt/CMakeLists.txt
+++ b/epan/crypt/CMakeLists.txt
@@ -14,6 +14,18 @@ include_directories(
${CMAKE_CURRENT_SOURCE_DIR}
)
+set(CRYPT_HEADER_FILES
+ dot11decrypt_debug.h
+ dot11decrypt_int.h
+ dot11decrypt_interop.h
+ dot11decrypt_rijndael.h
+ dot11decrypt_system.h
+ dot11decrypt_user.h
+ dot11decrypt_ws.h
+ kasumi.h
+ wep-wpadefs.h
+)
+
set(CRYPT_FILES
dot11decrypt.c
dot11decrypt_ccmp.c
@@ -30,6 +42,9 @@ set_source_files_properties(
)
add_library(crypt OBJECT
+ #Included so that Visual Studio can properly put header files in solution
+ ${CRYPT_HEADER_FILES}
+
${CRYPT_FILES}
)