Use "ws2_32" in lower-case to ensure the library is found when cross-compiling and using a case-sensitive filesystem. Closes https://github.com/wxWidgets/wxWidgets/pull/772
		
			
				
	
	
		
			31 lines
		
	
	
		
			783 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			783 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| #############################################################################
 | |
| # Name:        build/cmake/lib/net/CMakeLists.txt
 | |
| # Purpose:     CMake file for net library
 | |
| # Author:      Tobias Taschner
 | |
| # Created:     2016-09-21
 | |
| # Copyright:   (c) 2016 wxWidgets development team
 | |
| # Licence:     wxWindows licence
 | |
| #############################################################################
 | |
| 
 | |
| include(../../source_groups.cmake)
 | |
| 
 | |
| wx_append_sources(NET_FILES NET_CMN)
 | |
| 
 | |
| if(WIN32)
 | |
|     wx_append_sources(NET_FILES NET_WIN32)
 | |
| elseif(APPLE)
 | |
|     wx_append_sources(NET_FILES NET_OSX)
 | |
| endif()
 | |
| 
 | |
| if(UNIX AND NOT WIN32)
 | |
|     wx_append_sources(NET_FILES NET_UNIX)
 | |
| endif()
 | |
| 
 | |
| wx_add_library(net IS_BASE ${NET_FILES})
 | |
| 
 | |
| if(WIN32)
 | |
|     wx_lib_link_libraries(net PRIVATE ws2_32)
 | |
| endif()
 | |
| 
 | |
| wx_finalize_lib(net)
 |