summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2013-10-13 09:21:55 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2013-10-13 09:21:55 +0000
commit9c4ee86784bd0f5cb02f7e7b7af639438352d83b (patch)
treebfaca5c6711a3f6ba372e99804a95240069f320d /ui
parentf5decf57f10d7d71410b431b4416ef719f05496a (diff)
downloadwireshark-9c4ee86784bd0f5cb02f7e7b7af639438352d83b.tar.gz
Add CMake properties to targets so that they are logically organised when using a Visual Studio solution.
Add CMake properties to group the source files in epan into logical blocks when using a Visual Studio solution. svn path=/trunk/; revision=52580
Diffstat (limited to 'ui')
-rw-r--r--ui/CMakeLists.txt1
-rw-r--r--ui/gtk/CMakeLists.txt2
-rw-r--r--ui/qt/CMakeLists.txt1
3 files changed, 4 insertions, 0 deletions
diff --git a/ui/CMakeLists.txt b/ui/CMakeLists.txt
index ff15e2eb99..73375a3654 100644
--- a/ui/CMakeLists.txt
+++ b/ui/CMakeLists.txt
@@ -70,3 +70,4 @@ add_library(ui STATIC
)
set_target_properties(ui PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
+set_target_properties(ui PROPERTIES FOLDER "UI")
diff --git a/ui/gtk/CMakeLists.txt b/ui/gtk/CMakeLists.txt
index 84332c526e..9fd0e1a817 100644
--- a/ui/gtk/CMakeLists.txt
+++ b/ui/gtk/CMakeLists.txt
@@ -253,6 +253,7 @@ if(WIN32)
endif()
register_tap_files(wireshark-tap-register.c
+ taps
${WIRESHARK_TAP_SRC}
)
@@ -263,6 +264,7 @@ add_library(gtkui STATIC
wireshark-tap-register.c
)
set_target_properties(gtkui PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
+set_target_properties(gtkui PROPERTIES FOLDER "UI")
install(
DIRECTORY
diff --git a/ui/qt/CMakeLists.txt b/ui/qt/CMakeLists.txt
index 5dc8e3f1ed..3e45c5e713 100644
--- a/ui/qt/CMakeLists.txt
+++ b/ui/qt/CMakeLists.txt
@@ -249,4 +249,5 @@ add_library(qtui STATIC
${QTSHARK_TS_QM}
)
set_target_properties(qtui PROPERTIES LINK_FLAGS "${WS_LINK_FLAGS}")
+set_target_properties(qtui PROPERTIES FOLDER "UI")