2015-10-08 18:00:40 +00:00
import os
2016-04-02 18:26:12 +00:00
import sys
2015-10-08 18:00:40 +00:00
import string
2016-09-03 22:25:43 +00:00
import methods
2015-10-08 18:00:40 +00:00
def is_active ( ) :
2016-11-02 21:26:55 +00:00
return True
2016-04-02 18:26:12 +00:00
2016-11-02 21:29:36 +00:00
2015-10-08 18:00:40 +00:00
def get_name ( ) :
2016-11-02 21:26:55 +00:00
return " WinRT "
2015-10-08 18:00:40 +00:00
2016-11-02 21:29:36 +00:00
2015-10-08 18:00:40 +00:00
def can_build ( ) :
2016-09-03 22:25:43 +00:00
if ( os . name == " nt " ) :
#building natively on windows!
2016-11-02 21:26:55 +00:00
if ( os . getenv ( " VSINSTALLDIR " ) ) :
2016-09-03 22:25:43 +00:00
if ( os . getenv ( " ANGLE_SRC_PATH " ) == None ) :
return False
2016-11-02 21:26:55 +00:00
return True
return False
2016-04-02 18:26:12 +00:00
2015-10-08 18:00:40 +00:00
def get_opts ( ) :
2016-11-02 21:26:55 +00:00
return [ ]
2016-04-02 18:26:12 +00:00
2016-11-02 21:29:36 +00:00
2015-10-08 18:00:40 +00:00
def get_flags ( ) :
2016-09-03 22:25:43 +00:00
return [
( ' tools ' , ' no ' ) ,
( ' openssl ' , ' builtin ' ) ,
]
2015-10-08 18:00:40 +00:00
def configure ( env ) :
2016-09-03 22:25:43 +00:00
if ( env [ " bits " ] != " default " ) :
2017-08-26 16:53:49 +00:00
print ( " Error: bits argument is disabled for MSVC " )
2016-09-03 22:25:43 +00:00
print ( " Bits argument is not supported for MSVC compilation. Architecture depends on the Native/Cross Compile Tools Prompt/Developer Console (or Visual Studio settings) "
+ " that is being used to run SCons. As a consequence, bits argument is disabled. Run scons again without bits argument (example: scons p=winrt) and SCons will attempt to detect what MSVC compiler "
+ " will be executed and inform you. " )
sys . exit ( )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
arch = " "
env [ ' ENV ' ] = os . environ ;
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
# ANGLE
angle_root = os . getenv ( " ANGLE_SRC_PATH " )
env . Append ( CPPPATH = [ angle_root + ' /include ' ] )
jobs = str ( env . GetOption ( " num_jobs " ) )
angle_build_cmd = " msbuild.exe " + angle_root + " /winrt/10/src/angle.sln /nologo /v:m /m: " + jobs + " /p:Configuration=Release /p:Platform= "
2015-10-08 18:00:40 +00:00
2016-09-20 23:02:58 +00:00
if os . path . isfile ( str ( os . getenv ( " ANGLE_SRC_PATH " ) ) + " /winrt/10/src/angle.sln " ) :
env [ " build_angle " ] = True
2018-02-18 23:16:53 +00:00
if str ( os . getenv ( ' Platform ' ) ) . lower ( ) == " arm " :
2015-10-08 18:00:40 +00:00
2017-08-26 16:53:49 +00:00
print ( " Compiled program architecture will be an ARM executable. (forcing bits=32). " )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
arch = " arm "
env [ " bits " ] = " 32 "
env . Append ( LINKFLAGS = [ ' /MACHINE:ARM ' ] )
env . Append ( LIBPATH = [ os . environ [ ' VCINSTALLDIR ' ] + ' lib/store/arm ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
angle_build_cmd + = " ARM "
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( LIBPATH = [ angle_root + ' /winrt/10/src/Release_ARM/lib ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
else :
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
compiler_version_str = methods . detect_visual_c_compiler_version ( env [ ' ENV ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
if ( compiler_version_str == " amd64 " or compiler_version_str == " x86_amd64 " ) :
env [ " bits " ] = " 64 "
2017-08-26 16:53:49 +00:00
print ( " Compiled program architecture will be a x64 executable (forcing bits=64). " )
2016-09-03 22:25:43 +00:00
elif ( compiler_version_str == " x86 " or compiler_version_str == " amd64_x86 " ) :
env [ " bits " ] = " 32 "
2017-08-26 16:53:49 +00:00
print ( " Compiled program architecture will be a x86 executable. (forcing bits=32). " )
2016-09-03 22:25:43 +00:00
else :
2017-08-26 16:53:49 +00:00
print ( " Failed to detect MSVC compiler architecture version... Defaulting to 32bit executable settings (forcing bits=32). Compilation attempt will continue, but SCons can not detect for what architecture this build is compiled for. You should check your settings/compilation setup. " )
2016-09-03 22:25:43 +00:00
env [ " bits " ] = " 32 "
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
if ( env [ " bits " ] == " 32 " ) :
arch = " x86 "
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
angle_build_cmd + = " Win32 "
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( LINKFLAGS = [ ' /MACHINE:X86 ' ] )
env . Append ( LIBPATH = [ os . environ [ ' VCINSTALLDIR ' ] + ' lib/store ' ] )
env . Append ( LIBPATH = [ angle_root + ' /winrt/10/src/Release_Win32/lib ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
else :
arch = " x64 "
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
angle_build_cmd + = " x64 "
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( LINKFLAGS = [ ' /MACHINE:X64 ' ] )
env . Append ( LIBPATH = [ os . environ [ ' VCINSTALLDIR ' ] + ' lib/store/amd64 ' ] )
env . Append ( LIBPATH = [ angle_root + ' /winrt/10/src/Release_x64/lib ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( CPPPATH = [ ' #platform/winrt ' , ' #drivers/windows ' ] )
env . Append ( LINKFLAGS = [ ' /MANIFEST:NO ' , ' /NXCOMPAT ' , ' /DYNAMICBASE ' , ' /WINMD ' , ' /APPCONTAINER ' , ' /ERRORREPORT:PROMPT ' , ' /NOLOGO ' , ' /TLBID:1 ' , ' /NODEFAULTLIB: " kernel32.lib " ' , ' /NODEFAULTLIB: " ole32.lib " ' ] )
2017-07-12 04:33:42 +00:00
env . Append ( CPPFLAGS = [ ' /D ' , ' __WRL_NO_DEFAULT_LIB__ ' , ' /D ' , ' WIN32 ' , ' /DPNG_ABORT=abort ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
if ( env [ " target " ] == " release " ) :
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( CPPFLAGS = [ ' /O2 ' , ' /GL ' ] )
env . Append ( CPPFLAGS = [ ' /MD ' ] )
env . Append ( LINKFLAGS = [ ' /SUBSYSTEM:WINDOWS ' , ' /LTCG ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
elif ( env [ " target " ] == " release_debug " ) :
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( CCFLAGS = [ ' /O2 ' , ' /Zi ' , ' /DDEBUG_ENABLED ' ] )
env . Append ( CPPFLAGS = [ ' /MD ' ] )
env . Append ( LINKFLAGS = [ ' /SUBSYSTEM:CONSOLE ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
elif ( env [ " target " ] == " debug " ) :
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( CCFLAGS = [ ' /Zi ' , ' /DDEBUG_ENABLED ' , ' /DDEBUG_MEMORY_ENABLED ' ] )
env . Append ( CPPFLAGS = [ ' /MDd ' ] )
env . Append ( LINKFLAGS = [ ' /SUBSYSTEM:CONSOLE ' ] )
env . Append ( LINKFLAGS = [ ' /DEBUG ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( CCFLAGS = string . split ( ' /FS /MP /GS /wd " 4453 " /wd " 28204 " /wd " 4291 " /Zc:wchar_t /Gm- /fp:precise /D " _UNICODE " /D " UNICODE " /D " WINAPI_FAMILY=WINAPI_FAMILY_APP " /errorReport:prompt /WX- /Zc:forScope /Gd /EHsc /nologo ' ) )
env . Append ( CXXFLAGS = string . split ( ' /ZW /FS ' ) )
env . Append ( CCFLAGS = [ ' /AI ' , os . environ [ ' VCINSTALLDIR ' ] + ' \\ vcpackages ' , ' /AI ' , os . environ [ ' WINDOWSSDKDIR ' ] + ' \\ References \\ CommonConfiguration \\ Neutral ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env [ ' ENV ' ] = os . environ
2015-10-08 18:00:40 +00:00
2016-11-02 21:28:28 +00:00
env [ " PROGSUFFIX " ] = " . " + arch + env [ " PROGSUFFIX " ]
env [ " OBJSUFFIX " ] = " . " + arch + env [ " OBJSUFFIX " ]
env [ " LIBSUFFIX " ] = " . " + arch + env [ " LIBSUFFIX " ]
2015-10-08 18:00:40 +00:00
2016-11-02 21:26:55 +00:00
env . Append ( CCFLAGS = [ ' /DWINRT_ENABLED ' ] )
env . Append ( CCFLAGS = [ ' /DWINDOWS_ENABLED ' ] )
env . Append ( CCFLAGS = [ ' /DTYPED_METHOD_BIND ' ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( CCFLAGS = [ ' /DGLES2_ENABLED ' , ' /DGL_GLEXT_PROTOTYPES ' , ' /DEGL_EGLEXT_PROTOTYPES ' , ' /DANGLE_ENABLED ' ] )
2016-11-03 04:20:26 +00:00
2016-11-02 21:28:28 +00:00
LIBS = [
2016-09-03 22:25:43 +00:00
' xaudio2 ' ,
' WindowsApp ' ,
' mincore ' ,
2017-06-07 15:54:21 +00:00
' ws2_32 ' ,
2016-09-03 22:25:43 +00:00
' libANGLE ' ,
2016-11-02 21:26:55 +00:00
' libEGL ' ,
' libGLESv2 ' ,
2016-09-03 22:25:43 +00:00
]
env . Append ( LINKFLAGS = [ p + " .lib " for p in LIBS ] )
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
# Incremental linking fix
env [ ' BUILDERS ' ] [ ' ProgramOriginal ' ] = env [ ' BUILDERS ' ] [ ' Program ' ]
env [ ' BUILDERS ' ] [ ' Program ' ] = methods . precious_program
2015-10-08 18:00:40 +00:00
2016-09-03 22:25:43 +00:00
env . Append ( BUILDERS = { ' ANGLE ' : env . Builder ( action = angle_build_cmd ) } )
2015-10-08 18:00:40 +00:00
2017-06-25 12:26:24 +00:00
env . Append ( BUILDERS = { ' GLSL120 ' : env . Builder ( action = methods . build_legacygl_headers , suffix = ' glsl.gen.h ' , src_suffix = ' .glsl ' ) } )
env . Append ( BUILDERS = { ' GLSL ' : env . Builder ( action = methods . build_glsl_headers , suffix = ' glsl.gen.h ' , src_suffix = ' .glsl ' ) } )
env . Append ( BUILDERS = { ' HLSL9 ' : env . Builder ( action = methods . build_hlsl_dx9_headers , suffix = ' hlsl.gen.h ' , src_suffix = ' .hlsl ' ) } )
env . Append ( BUILDERS = { ' GLSL120GLES ' : env . Builder ( action = methods . build_gles2_headers , suffix = ' glsl.gen.h ' , src_suffix = ' .glsl ' ) } )