aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/modules
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-10-07 20:38:51 -0700
committerGuy Harris <guy@alum.mit.edu>2018-10-08 04:14:45 +0000
commit237cbb1823495974568f6cd7c17025a025ff2639 (patch)
treef4eb5c41877dc210396535619d0e3ed302068864 /cmake/modules
parentbce13644e9d528a153f87019738a1582c9cae606 (diff)
Put the Windows-specific system library settings in CMakeLists.txt.
We already do that for the macOS-specific system libraries; do it for the Windows-specific system libraries as well. Change-Id: I4646cbf5043406a9b6be70307b51df2fbe0329dd Reviewed-on: https://code.wireshark.org/review/30066 Petri-Dish: Guy Harris <guy@alum.mit.edu> Tested-by: Petri Dish Buildbot Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'cmake/modules')
-rw-r--r--cmake/modules/UseWinLibs.cmake16
1 files changed, 0 insertions, 16 deletions
diff --git a/cmake/modules/UseWinLibs.cmake b/cmake/modules/UseWinLibs.cmake
deleted file mode 100644
index 9f6135d60a..0000000000
--- a/cmake/modules/UseWinLibs.cmake
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-
-# Right now this is a more or less inelegant hack to get Windows
-# builds going with MSVC
-
-if( WIN32 )
-
- # We might need something like "if (CMAKE_COMPILER_ID MATCHES "MSVC")"
- # here to support other compilers on Windows.
-
- set( WIN_PSAPI_LIBRARY psapi.lib )
- set( WIN_WSOCK32_LIBRARY wsock32.lib )
- set( WIN_COMCTL32_LIBRARY comctl32.lib )
- set( WIN_VERSION_LIBRARY version.lib )
-
-endif()