mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-02-06 22:18:36 +00:00
13 lines
385 B
Plaintext
13 lines
385 B
Plaintext
Import('env')
|
|
|
|
src = [
|
|
env.Object('tolua.c'),
|
|
]
|
|
|
|
|
|
#toluabind = env.LuaBinding('toluabind.c', 'tolua_scons.pkg', 'tolua', bootstrap = True)
|
|
|
|
env.bin_target = env.Program('#/bin/'+env['tolua_bin'], src, LIBS = ['$tolua_lib'] + env['LIBS'])
|
|
|
|
env.bootstrap_target = env.Program('#/bin/'+env['TOLUAPP_BOOTSTRAP'], src + ['toluabind_default.c', env.lib_target_static], LIBS = env['LIBS'])
|