File: FindWin32Libs.cmake

package info (click to toggle)
spring 105.0.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108,860 kB
  • sloc: cpp: 467,785; ansic: 302,607; python: 12,925; java: 12,201; awk: 5,889; sh: 2,371; xml: 655; perl: 405; php: 276; objc: 194; makefile: 75; sed: 2
file content (90 lines) | stat: -rw-r--r-- 2,486 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# This file is part of the Spring engine (GPL v2 or later), see LICENSE.html

# - Try to find some win32-only libraries needed to compile Spring
# Once done this will define
#
# WIN32_FOUND - System has the required libraries
# WIN32_LIBRARIES - Link these
#

SET(WIN32_FOUND TRUE)

IF(MINGW)
	SET(WIN32_LIBRARY_SEARCHPATHS
		$ENV{MINGDIR}/lib)
	# no point in searching for these on a proper mingw installation
	SET(IMAGEHLP_LIBRARY -limagehlp)
	SET(IPHLPAPI_LIBRARY -liphlpapi)
	SET(WS2_32_LIBRARY -lws2_32)
	SET(WINMM_LIBRARY -lwinmm)
	SET(MINGW32_LIBRARY mingw32)
ELSEIF(MSVC)
	SET(IMAGEHLP_LIBRARY imagehlp)
	SET(IPHLPAPI_LIBRARY iphlpapi)
	SET(WS2_32_LIBRARY ws2_32)
	SET(WINMM_LIBRARY winmm)
	SET(DBGHELP_LIBRARY dbghelp) #dont need for msvc
	SET(IMM32_LIBRARY imm32)
	SET(VERSION_LIBRARY version)
ELSEIF(MINGW)
	SET(WIN32_LIBRARY_SEARCHPATHS
		/
		/usr/lib
		/usr/local/lib
		NO_DEFAULT_PATH)

	IF(NOT IMAGEHLP_LIBRARY)
		FIND_LIBRARY(IMAGEHLP_LIBRARY imagehlp PATHS ${WIN32_LIBRARY_SEARCHPATHS})
		IF(NOT IMAGEHLP_LIBRARY)
			MESSAGE(SEND_ERROR "Could not find win32 IMAGEHLP library.")
			SET(WIN32_FOUND FALSE)
		ENDIF(NOT IMAGEHLP_LIBRARY)
	ENDIF(NOT IMAGEHLP_LIBRARY)

	IF(NOT IPHLPAPI_LIBRARY)
		FIND_LIBRARY(IPHLPAPI_LIBRARY iphlpapi PATHS ${WIN32_LIBRARY_SEARCHPATHS})
		IF(NOT IPHLPAPI_LIBRARY)
			MESSAGE(SEND_ERROR "Could not find win32 IPHLPAPI library.")
			SET(WIN32_FOUND FALSE)
		ENDIF(NOT IPHLPAPI_LIBRARY)
	ENDIF(NOT IPHLPAPI_LIBRARY)

	IF(NOT WS2_32_LIBRARY)
		FIND_LIBRARY(WS2_32_LIBRARY ws2_32 PATHS ${WIN32_LIBRARY_SEARCHPATHS})
		IF(NOT WS2_32_LIBRARY)
			MESSAGE(SEND_ERROR "Could not find win32 WS2_32 library.")
			SET(WIN32_FOUND FALSE)
		ENDIF(NOT WS2_32_LIBRARY)
	ENDIF(NOT WS2_32_LIBRARY)

	IF(NOT WINMM_LIBRARY)
		FIND_LIBRARY(WINMM_LIBRARY winmm PATHS ${WIN32_LIBRARY_SEARCHPATHS})
		IF(NOT WINMM_LIBRARY)
			MESSAGE(SEND_ERROR "Could not find win32 WINMM library.")
			SET(WIN32_FOUND FALSE)
		ENDIF(NOT WINMM_LIBRARY)
	ENDIF(NOT WINMM_LIBRARY)
ENDIF(MINGW)


IF(WIN32_FOUND)
	SET(WIN32_LIBRARIES
		${DBGHELP_LIBRARY} # for stacktraces on msvc
		${IMAGEHLP_LIBRARY} # for System/Platform/Win/CrashHandler.cpp
		${IPHLPAPI_LIBRARY}
		${WS2_32_LIBRARY}	  # for System/Net/
		${WINMM_LIBRARY}
		${MINGW32_LIBRARY}
		${IMM32_LIBRARY} # for SDL2
		${VERSION_LIBRARY} # for SDL2
	)
	
	MESSAGE(STATUS "Found win32 libraries: ${WIN32_LIBRARIES}")
ENDIF(WIN32_FOUND)

MARK_AS_ADVANCED(
	IMAGEHLP_LIBRARY
	IPHLPAPI_LIBRARY
	WS2_32_LIBRARY
	WINMM_LIBRARY
)