mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-30 21:30:04 +00:00 
			
		
		
		
	Merge pull request #2228 from freiro/winver_fix
Move WINVER definition to cmake and a bit of cleanup
This commit is contained in:
		
						commit
						68c00ee771
					
				
					 2 changed files with 8 additions and 11 deletions
				
			
		|  | @ -182,14 +182,14 @@ IF (APPLE) | ||||||
| 
 | 
 | ||||||
|     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") |     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++") | ||||||
|     set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") |     set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -stdlib=libc++") | ||||||
| ELSEIF(MINGW) |  | ||||||
|     # PSAPI is the Process Status API |  | ||||||
|     set(PLATFORM_LIBRARIES winmm ws2_32 psapi imm32 version) |  | ||||||
| 
 |  | ||||||
|     # WSAPoll functionality doesn't exist before WinNT 6.x (Vista and up) |  | ||||||
|     add_definitions(-D_WIN32_WINNT=0x0600) |  | ||||||
| ELSEIF (WIN32) | ELSEIF (WIN32) | ||||||
|  |     # WSAPoll and SHGetKnownFolderPath (AppData/Roaming) didn't exist before WinNT 6.x (Vista) | ||||||
|  |     add_definitions(-D_WIN32_WINNT=0x0600 -DWINVER=0x0600) | ||||||
|     set(PLATFORM_LIBRARIES winmm ws2_32) |     set(PLATFORM_LIBRARIES winmm ws2_32) | ||||||
|  |     IF (MINGW) | ||||||
|  |         # PSAPI is the Process Status API | ||||||
|  |         set(PLATFORM_LIBRARIES ${PLATFORM_LIBRARIES} psapi imm32 version) | ||||||
|  |     ENDIF (MINGW) | ||||||
| ELSEIF (CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$") | ELSEIF (CMAKE_SYSTEM_NAME MATCHES "^(Linux|kFreeBSD|GNU|SunOS)$") | ||||||
|     set(PLATFORM_LIBRARIES rt) |     set(PLATFORM_LIBRARIES rt) | ||||||
| ENDIF (APPLE) | ENDIF (APPLE) | ||||||
|  |  | ||||||
|  | @ -26,9 +26,6 @@ | ||||||
| #define stat _stat64 | #define stat _stat64 | ||||||
| #define fstat _fstat64 | #define fstat _fstat64 | ||||||
| #define fileno _fileno | #define fileno _fileno | ||||||
| // Windows version, at least Vista is required to obtain AppData Path
 |  | ||||||
| #define WINVER 0x0600 |  | ||||||
| #define _WIN32_WINNT 0x0600 |  | ||||||
| #else | #else | ||||||
| #ifdef __APPLE__ | #ifdef __APPLE__ | ||||||
| #include <sys/param.h> | #include <sys/param.h> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue