2006-07-31 22:24:21 +00:00
|
|
|
import os
|
2006-08-08 23:20:16 +00:00
|
|
|
import sys
|
2006-07-31 22:24:21 +00:00
|
|
|
|
2006-07-31 00:03:35 +00:00
|
|
|
# XXX path separator fixed right now
|
|
|
|
opts = Options()
|
2006-08-04 17:32:08 +00:00
|
|
|
opts.AddOptions(
|
2008-05-27 05:29:00 +00:00
|
|
|
#BoolOption('PSS_STYLE', 'Path separator style', 1),
|
2008-07-23 02:27:35 +00:00
|
|
|
#BoolOption('LSB_FIRST', 'Least significant byte first?', None),
|
2008-05-27 05:29:00 +00:00
|
|
|
BoolOption('FRAMESKIP', 'Enable frameskipping', 0),
|
|
|
|
BoolOption('OPENGL', 'Enable OpenGL support (SDL only)', 1)
|
2006-08-04 17:32:08 +00:00
|
|
|
)
|
2006-07-31 00:03:35 +00:00
|
|
|
|
2008-05-27 05:29:00 +00:00
|
|
|
env = Environment(options = opts)
|
2008-08-03 00:08:17 +00:00
|
|
|
|
2008-08-02 22:53:49 +00:00
|
|
|
|
2008-06-04 00:15:00 +00:00
|
|
|
# Default compiler flags:
|
|
|
|
env.Append(CCFLAGS = ['-Wall', '-Wno-write-strings', '-Wno-sign-compare'])
|
2006-07-31 00:03:35 +00:00
|
|
|
|
2008-08-02 22:53:49 +00:00
|
|
|
|
|
|
|
|
2008-05-27 05:29:00 +00:00
|
|
|
if os.environ.has_key('PLATFORM'):
|
|
|
|
env.Replace(PLATFORM = os.environ['PLATFORM'])
|
2006-07-31 22:24:21 +00:00
|
|
|
if os.environ.has_key('CC'):
|
|
|
|
env.Replace(CC = os.environ['CC'])
|
2006-08-01 01:15:30 +00:00
|
|
|
if os.environ.has_key('CXX'):
|
|
|
|
env.Replace(CXX = os.environ['CXX'])
|
2008-05-27 05:29:00 +00:00
|
|
|
if os.environ.has_key('WINDRES'):
|
2008-06-04 00:15:00 +00:00
|
|
|
env.Replace(WINDRES = os.environ['WINDRES'])
|
2006-07-31 22:24:21 +00:00
|
|
|
if os.environ.has_key('CFLAGS'):
|
|
|
|
env.Append(CCFLAGS = os.environ['CFLAGS'])
|
|
|
|
if os.environ.has_key('LDFLAGS'):
|
|
|
|
env.Append(LINKFLAGS = os.environ['LDFLAGS'])
|
2006-07-31 20:07:15 +00:00
|
|
|
|
2006-07-31 00:03:35 +00:00
|
|
|
print "platform: ", env['PLATFORM']
|
|
|
|
|
2006-07-31 22:24:21 +00:00
|
|
|
# special flags for cygwin
|
2008-06-04 00:15:00 +00:00
|
|
|
# we have to do this here so that the function and lib checks will go through mingw
|
2006-07-31 00:03:35 +00:00
|
|
|
if env['PLATFORM'] == 'cygwin':
|
2006-07-31 22:24:21 +00:00
|
|
|
env.Append(CCFLAGS = " -mno-cygwin")
|
|
|
|
env.Append(LINKFLAGS = " -mno-cygwin")
|
2006-08-22 06:27:18 +00:00
|
|
|
env['LIBS'] = ['wsock32'];
|
2006-07-29 05:46:15 +00:00
|
|
|
|
2008-05-27 05:29:00 +00:00
|
|
|
if env['PLATFORM'] == 'win32':
|
2008-06-04 00:15:00 +00:00
|
|
|
env.Append(CPPPATH = [".", "drivers/win/", "drivers/common/", "drivers/", "drivers/win/zlib", "drivers/win/directx"])
|
|
|
|
env.Append(CPPDEFINES = ["PSS_STYLE=2", "WIN32", "_USE_SHARED_MEMORY_", "NETWORK", "FCEUDEF_DEBUGGER", "NOMINMAX", "NEED_MINGW_HACKS", "_WIN32_IE=0x0600"])
|
|
|
|
env.Append(LIBS = ["rpcrt4", "comctl32", "vfw32", "winmm", "ws2_32", "comdlg32", "ole32", "gdi32", "htmlhelp"])
|
2008-05-27 05:29:00 +00:00
|
|
|
else:
|
2008-06-04 00:15:00 +00:00
|
|
|
conf = Configure(env)
|
2008-05-27 05:29:00 +00:00
|
|
|
if not conf.CheckLib('SDL'):
|
|
|
|
print 'Did not find libSDL or SDL.lib, exiting!'
|
|
|
|
Exit(1)
|
|
|
|
if not conf.CheckLib('z', autoadd=1):
|
|
|
|
print 'Did not find libz or z.lib, exiting!'
|
|
|
|
Exit(1)
|
2008-07-24 03:01:39 +00:00
|
|
|
if not conf.CheckLib('lua5.1', autoadd=1):
|
|
|
|
print 'Did not find liblua5.1 or lua5.1.lib, exiting!'
|
|
|
|
Exit(1)
|
2008-05-27 05:29:00 +00:00
|
|
|
if conf.CheckFunc('asprintf'):
|
|
|
|
conf.env.Append(CCFLAGS = " -DHAVE_ASPRINTF")
|
|
|
|
if env['OPENGL'] and conf.CheckLibWithHeader('GL', 'GL/gl.h', 'c++', autoadd=1):
|
|
|
|
conf.env.Append(CCFLAGS = " -DOPENGL")
|
2008-06-04 00:15:00 +00:00
|
|
|
conf.env.Append(CPPDEFINES = ['PSS_STYLE=1'])
|
2008-05-27 05:29:00 +00:00
|
|
|
# parse SDL cflags/libs
|
|
|
|
env.ParseConfig('sdl-config --cflags --libs')
|
2008-07-24 03:01:39 +00:00
|
|
|
env.ParseConfig('echo "-I/usr/include/lua5.1/ -llua5.1"')
|
2008-07-23 05:19:27 +00:00
|
|
|
env = conf.Finish()
|
2006-07-29 05:46:15 +00:00
|
|
|
|
2008-06-04 00:15:00 +00:00
|
|
|
# Build for this system's endianness, if not overriden
|
2008-07-23 05:19:27 +00:00
|
|
|
#if env.has_key('LSB_FIRST'):
|
|
|
|
# if env['LSB_FIRST']:
|
|
|
|
# env.Append(CPPDEFINES = ['LSB_FIRST'])
|
2008-07-24 03:01:39 +00:00
|
|
|
if sys.byteorder == 'little' or env['PLATFORM'] == 'win32':
|
2008-05-27 05:29:00 +00:00
|
|
|
env.Append(CPPDEFINES = ['LSB_FIRST'])
|
2006-08-08 23:20:16 +00:00
|
|
|
|
|
|
|
if env['FRAMESKIP']:
|
2008-05-27 05:29:00 +00:00
|
|
|
env.Append(CPPDEFINES = ['FRAMESKIP'])
|
2006-08-08 23:20:16 +00:00
|
|
|
|
2008-06-04 00:15:00 +00:00
|
|
|
print "base CPPDEFINES:",env['CPPDEFINES']
|
|
|
|
print "base CCFLAGS:",env['CCFLAGS']
|
|
|
|
|
|
|
|
# Split into release and debug environments:
|
|
|
|
#release_env = env.Clone(CCFLAGS = ['-O3', '-fomit-frame-pointer'], CPPDEFINES=["NDEBUG"])
|
|
|
|
#debug_env = env.Clone(CCFLAGS = ['-O', '-g'], CPPDEFINES=["_DEBUG"])
|
2008-06-04 01:14:53 +00:00
|
|
|
# THAT FAILED! Compromise:
|
2008-07-23 05:19:27 +00:00
|
|
|
#env.Append(CCFLAGS = ['-O3', '-g'], CPPDEFINES = ["_DEBUG"])
|
2008-06-04 01:14:53 +00:00
|
|
|
|
2008-06-04 00:15:00 +00:00
|
|
|
#SConscript('src/SConscript', build_dir='release', exports={'env':release_env})
|
|
|
|
#SConscript('src/SConscript', build_dir='release', exports={'env':debug_env})
|
2006-07-29 05:46:15 +00:00
|
|
|
Export('env')
|
2008-06-04 00:15:00 +00:00
|
|
|
SConscript('src/SConscript')
|
|
|
|
|
|
|
|
# Install rules
|
|
|
|
exe_suffix = ''
|
|
|
|
if env['PLATFORM'] == 'win32':
|
|
|
|
exe_suffix = '.exe'
|
|
|
|
#fceux_r_src = 'src/release/fceux' + exe_suffix
|
|
|
|
#fceux_r_dst = 'bin/fceuxREL' + exe_suffix
|
|
|
|
#fceux_d_src = 'src/debug/fceux' + exe_suffix
|
|
|
|
#fceux_d_dst = 'bin/fceuxDBG' + exe_suffix
|
|
|
|
fceux_src = 'src/fceux' + exe_suffix
|
|
|
|
fceux_dst = 'bin/fceux' + exe_suffix
|
|
|
|
|
2008-08-03 00:08:17 +00:00
|
|
|
auxlib_src = 'src/auxlib.lua'
|
|
|
|
auxlib_dst = 'bin/auxlib.lua'
|
|
|
|
|
2008-06-04 00:15:00 +00:00
|
|
|
fceux_h_src = 'src/drivers/win/help/fceux.chm'
|
|
|
|
fceux_h_dst = 'bin/fceux.chm'
|
2006-07-29 05:46:15 +00:00
|
|
|
|
2008-06-04 00:15:00 +00:00
|
|
|
env.Command(fceux_h_dst, fceux_h_src, [Copy(fceux_h_dst, fceux_h_src)])
|
|
|
|
env.Command(fceux_dst, fceux_src, [Copy(fceux_dst, fceux_src)])
|
2008-08-03 00:08:17 +00:00
|
|
|
env.Command(auxlib_dst, auxlib_src, [Copy(auxlib_dst, auxlib_src)])
|
2008-08-03 00:09:00 +00:00
|
|
|
|
2008-08-03 00:08:17 +00:00
|
|
|
env.Alias(target="install", source=env.Install(dir="/usr/local/bin/", source=("bin/fceux", "bin/auxlib.lua")))
|