aafef187ef
-jsoncpp -lua -tolua++ -WebServer -zlib -iniFile git-svn-id: http://mc-server.googlecode.com/svn/trunk@4 0a769ca7-a7f5-676a-18bf-c427514a06d6
19 lines
358 B
Plaintext
19 lines
358 B
Plaintext
Import('env')
|
|
|
|
|
|
sources = [
|
|
'tolua_event.c',
|
|
'tolua_is.c',
|
|
'tolua_map.c',
|
|
'tolua_push.c',
|
|
'tolua_to.c',
|
|
]
|
|
|
|
env.lib_target_static = env.Library('#/lib/'+env['tolua_lib']+'_static', sources)
|
|
|
|
if env['shared']:
|
|
env.lib_target = env.SharedLibrary('#lib/'+env['tolua_lib'], sources)
|
|
else:
|
|
env.lib_target = env.Library('#/lib/'+env['tolua_lib'], sources)
|
|
|