mirror of
				https://github.com/luanti-org/luanti.git
				synced 2025-11-04 09:15:29 +01:00 
			
		
		
		
	* MSVC: Fix '/std:c++11' is not a valid compiler option * MSVC/MINGW: Define 'WIN32_LEAN_AND_MEAN' for the whole project In some obscure cases 'Windows.h" got includet before that definition, which leaded to compilation warnings+errors * MSVC: '/arch:SSE' is only available for x86 * MSVC: Fix float conversation * MSVC/MINGW: use winthreads on Windows * MSVC: 'USE_CMAKE_CONFIG' might be already definied by CMake build system * MSVC: Use all available cpu cores for compiling * Add missing include ctime and use std::time_t
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#include <windows.h>
 | 
						|
#include <commctrl.h>
 | 
						|
#include <richedit.h>
 | 
						|
#ifndef USE_CMAKE_CONFIG_H
 | 
						|
#define USE_CMAKE_CONFIG_H
 | 
						|
#endif
 | 
						|
#include "config.h"
 | 
						|
#undef USE_CMAKE_CONFIG_H
 | 
						|
 | 
						|
#if RUN_IN_PLACE
 | 
						|
	#define BUILDMODE "RUN_IN_PLACE=1"
 | 
						|
#else
 | 
						|
	#define BUILDMODE "RUN_IN_PLACE=0"
 | 
						|
#endif
 | 
						|
 | 
						|
LANGUAGE 0, SUBLANG_NEUTRAL
 | 
						|
130        ICON         "minetest-icon.ico"
 | 
						|
 | 
						|
/////////////////////////////////////////////////////////////////////////////
 | 
						|
//
 | 
						|
// Version
 | 
						|
//
 | 
						|
 | 
						|
1 VERSIONINFO
 | 
						|
 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0
 | 
						|
 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_PATCH,0
 | 
						|
 FILEFLAGSMASK 0x3fL
 | 
						|
#ifndef NDEBUG
 | 
						|
 FILEFLAGS 0x1L
 | 
						|
#else
 | 
						|
 FILEFLAGS 0x0L
 | 
						|
#endif
 | 
						|
 FILEOS VOS_NT_WINDOWS32
 | 
						|
 FILETYPE VFT_APP
 | 
						|
 FILESUBTYPE 0x0L
 | 
						|
BEGIN
 | 
						|
    BLOCK "StringFileInfo"
 | 
						|
    BEGIN
 | 
						|
        BLOCK "040904b0"
 | 
						|
    BEGIN
 | 
						|
        VALUE "Comments", ""
 | 
						|
        VALUE "CompanyName", PROJECT_NAME_C " community"
 | 
						|
        VALUE "FileDescription", PROJECT_NAME_C " engine"
 | 
						|
        VALUE "FileVersion", VERSION_STRING
 | 
						|
        VALUE "InternalName", PROJECT_NAME
 | 
						|
        VALUE "LegalCopyright", "(c) 2011-2015 celeron55"
 | 
						|
        VALUE "LegalTrademarks", """Minetest"" is the property of the Minetest community, don't use it without permission!"
 | 
						|
        VALUE "OriginalFilename", "minetest.exe"
 | 
						|
        VALUE "PrivateBuild", VERSION_EXTRA
 | 
						|
        VALUE "ProductName", PROJECT_NAME_C
 | 
						|
        VALUE "ProductVersion", PRODUCT_VERSION_STRING
 | 
						|
        VALUE "SpecialBuild", BUILDMODE
 | 
						|
    END
 | 
						|
END
 | 
						|
BLOCK "VarFileInfo"
 | 
						|
BEGIN
 | 
						|
    VALUE "Translation", 0x409, 1200
 | 
						|
END
 | 
						|
END
 | 
						|
 |