aboutsummaryrefslogtreecommitdiffstats
path: root/cmake
diff options
context:
space:
mode:
authorGraham Bloice <graham.bloice@trihedral.com>2015-01-11 00:05:42 +0000
committerGraham Bloice <graham.bloice@trihedral.com>2015-01-11 00:09:14 +0000
commitb4f5b6e72b044c601994a874af0e6a3eab1e3a1d (patch)
tree335df50a3d3a064eb7d53d0e3564880ef7025b3c /cmake
parentb2f03cb7db611a469741904012d742d27209dc84 (diff)
Update CMake "Project names" and Folders
This gives a more structured layout in Visual Studio Change-Id: I0da87a3e5ec759c69aeee031366cf287485cdac2 Reviewed-on: https://code.wireshark.org/review/6485 Reviewed-by: Graham Bloice <graham.bloice@trihedral.com> Tested-by: Graham Bloice <graham.bloice@trihedral.com>
Diffstat (limited to 'cmake')
-rw-r--r--cmake/modules/UseABICheck.cmake1
-rw-r--r--cmake/modules/UseCheckAPI.cmake1
2 files changed, 2 insertions, 0 deletions
diff --git a/cmake/modules/UseABICheck.cmake b/cmake/modules/UseABICheck.cmake
index 061bc77bb7..0b391b6825 100644
--- a/cmake/modules/UseABICheck.cmake
+++ b/cmake/modules/UseABICheck.cmake
@@ -20,5 +20,6 @@ MACRO(ABICHECK _libname)
file(MAKE_DIRECTORY ${ABICHECK_TMPDIR})
file(COPY ${HEADERS} ../ws_symbol_export.h DESTINATION ${ABICHECK_TMPDIR})
add_custom_target(dumpabi-${_libname} DEPENDS ${_libname}.abi.tar.gz)
+ set_target_properties(dumpabi-${_libname} PROPERTIES FOLDER "Auxilary")
ENDMACRO()
diff --git a/cmake/modules/UseCheckAPI.cmake b/cmake/modules/UseCheckAPI.cmake
index db830a5e86..02815a2192 100644
--- a/cmake/modules/UseCheckAPI.cmake
+++ b/cmake/modules/UseCheckAPI.cmake
@@ -13,4 +13,5 @@ macro( CHECKAPI )
${CMAKE_SOURCE_DIR}/tools/checkAPIs.pl
${_sources}
)
+ set_target_properties(checkapi PROPERTIES FOLDER "Auxilary")
ENDMACRO()