aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2015-09-28 15:29:55 +0100
committerGraham Bloice <graham.bloice@trihedral.com>2015-09-28 20:26:20 +0000
commit1e8ad87d46659c072adf7521f172b4699d8357be (patch)
treed7799bedcbb54cf85ec030489e02bc96354f0a1d
parenta9445a4d365d6805b028f11c6b22b70907bbd63a (diff)
Cosmetic tidy up for the projects in the Visual Studio solution
Change-Id: Ie4ed28ee7e59def2e8a15433334988b4d0225d1d Reviewed-on: https://code.wireshark.org/review/10675 Petri-Dish: Graham Bloice <graham.bloice@trihedral.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Graham Bloice <graham.bloice@trihedral.com>
-rw-r--r--cmake/modules/UseABICheck.cmake2
-rw-r--r--epan/dissectors/dcerpc/CMakeLists.txt1
-rw-r--r--packaging/nsis/CMakeLists.txt1
3 files changed, 3 insertions, 1 deletions
diff --git a/cmake/modules/UseABICheck.cmake b/cmake/modules/UseABICheck.cmake
index 024921b453..b5841e75d1 100644
--- a/cmake/modules/UseABICheck.cmake
+++ b/cmake/modules/UseABICheck.cmake
@@ -19,7 +19,7 @@ MACRO(ABICHECK _libname)
file(GLOB ABICHECK_HEADERS RELATIVE ${CMAKE_CURRENT_BINARY_DIR} *.h)
set(ABICHECK_HEADERS ${ABICHECK_HEADERS} ${CMAKE_SOURCE_DIR}/ws_symbol_export.h)
add_custom_target(dumpabi-${_libname} DEPENDS ${_libname}.abi.tar.gz)
- set_target_properties(dumpabi-${_libname} PROPERTIES FOLDER "Auxilary")
+ set_target_properties(dumpabi-${_libname} PROPERTIES FOLDER "Auxiliary")
if (WIN32)
set(ABI_COPY_COMMAND xcopy)
set(ABI_COPY_FLAGS /d)
diff --git a/epan/dissectors/dcerpc/CMakeLists.txt b/epan/dissectors/dcerpc/CMakeLists.txt
index e8d9417e39..ee2077ea0e 100644
--- a/epan/dissectors/dcerpc/CMakeLists.txt
+++ b/epan/dissectors/dcerpc/CMakeLists.txt
@@ -43,6 +43,7 @@ if (WERROR)
endif()
add_executable(idl2wrs ${IDL2WRS_FILES})
+set_target_properties(idl2wrs PROPERTIES FOLDER "Executables")
target_link_libraries(idl2wrs ${GLIB2_LIBRARIES})
diff --git a/packaging/nsis/CMakeLists.txt b/packaging/nsis/CMakeLists.txt
index b40796cab2..4852f43a55 100644
--- a/packaging/nsis/CMakeLists.txt
+++ b/packaging/nsis/CMakeLists.txt
@@ -223,6 +223,7 @@ macro( ADD_NSIS_PACKAGE_TARGET )
${CMAKE_BINARY_DIR}/docbook/user-guide.chm
${DATAFILE_DIR}/uninstall.exe
)
+ set_target_properties(nsis_package_prep PROPERTIES FOLDER "Packaging")
# Dump the installer into ${CMAKE_CURRENT_SOURCE_DIR}/packaging/nsis to match
# the NMake environment for now.