aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-08 16:54:20 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-10-08 16:54:20 +0000
commit622281a1a4c77dab20deb2d001232dd4a7b246a9 (patch)
treed5478186921ea5a1178f6c8f6cb2c80e8810ee85 /cmake/modules
parent1f858f49f34bff5aef2f2a506d9c9c2195a6e2b9 (diff)
Remove FindWSWIN32.cmake. It was only a temporary hack I introduced. We should add Windows support in a more clean fashion.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@30408 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/FindWSWIN32.cmake34
1 files changed, 0 insertions, 34 deletions
diff --git a/cmake/modules/FindWSWIN32.cmake b/cmake/modules/FindWSWIN32.cmake
deleted file mode 100644
index 3b7cabc022..0000000000
--- a/cmake/modules/FindWSWIN32.cmake
+++ /dev/null
@@ -1,34 +0,0 @@
-#
-# $Id: $
-#
-# - Find packages bundled with Windows
-#
-
-IF(WIN32)
-
-SET(WIRESHARK_TARGET_PLATFORM "win32" CACHE STRING "Target platform (only win32/win64)")
-SET(WIRESHARK_LIBS "c:/wireshark-${WIRESHARK_TARGET_PLATFORM}-libs" CACHE PATH "Base directory, where your libraries reside")
-
-SET(GLIB_VERSION "2.0" CACHE PATH "GLib version")
-
-# GLib
-set(GLIB2_INCLUDE_DIRS
- ${WIRESHARK_LIBS}/glib/include/glib-${GLIB_VERSION}
- ${WIRESHARK_LIBS}/glib/lib/glib-${GLIB_VERSION}/include
-)
-set(GLIB2_LIBRARIES
- ${WIRESHARK_LIBS}/glib/lib/glib-${GLIB_VERSION}.lib
- ${WIRESHARK_LIBS}/glib/lib/gmodule-${GLIB_VERSION}.lib
- ${WIRESHARK_LIBS}/glib/lib/gobject-${GLIB_VERSION}.lib
- # XXX: Also include GThread lib for now
- ${WIRESHARK_LIBS}/glib/lib/gthread-${GLIB_VERSION}.lib
-)
-
-SET(WSWIN32_FOUND TRUE)
-SET(WSWIN32_INCLUDE_DIRS ${GLIB2_INCLUDE_DIRS})
-SET(WSWIN32_LIBRARIES ${GLIB2_LIBRARIES})
-
-# show the GLIB2_INCLUDE_DIRS and GLIB2_LIBRARIES variables only in the advanced view
-mark_as_advanced(GLIB2_INCLUDE_DIRS GLIB2_LIBRARIES)
-
-ENDIF()