aboutsummaryrefslogtreecommitdiffstats
path: root/epan/wmem
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/wmem
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/wmem')
-rw-r--r--epan/wmem/CMakeLists.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/epan/wmem/CMakeLists.txt b/epan/wmem/CMakeLists.txt
index 98d96424c2..e66007e448 100644
--- a/epan/wmem/CMakeLists.txt
+++ b/epan/wmem/CMakeLists.txt
@@ -29,6 +29,19 @@ set(WMEM_PUBLIC_HEADERS
wmem_user_cb.h
)
+set(WMEM_HEADER_FILES
+ ${WMEM_PUBLIC_HEADERS}
+ wmem_allocator.h
+ wmem_allocator_block.h
+ wmem_allocator_block_fast.h
+ wmem_allocator_simple.h
+ wmem_allocator_strict.h
+ wmem_interval_tree.h
+ wmem_map_int.h
+ wmem_tree-int.h
+ wmem_user_cb_int.h
+)
+
set(WMEM_FILES
wmem_array.c
wmem_core.c
@@ -56,6 +69,9 @@ set_source_files_properties(
)
add_library(wmem OBJECT
+ #Included so that Visual Studio can properly put header files in solution
+ ${WMEM_HEADER_FILES}
+
${WMEM_FILES}
)