mirror of
https://github.com/The-Powder-Toy/The-Powder-Toy.git
synced 2025-08-29 10:49:53 +02:00
Update luasocket, embed eventcompat.lua differently
This commit is contained in:
@@ -1,9 +1,3 @@
|
||||
to_array = generator(
|
||||
import('python').find_installation('python3'),
|
||||
output: [ '@BASENAME@.cpp', '@BASENAME@.h' ],
|
||||
arguments: [ join_paths(meson.current_source_dir(), 'to_array.py'), '@BUILD_DIR@', '@OUTPUT0@', '@OUTPUT1@', '@INPUT@', '@EXTRA_ARGS@' ]
|
||||
)
|
||||
|
||||
data_files = files(
|
||||
'hmap.cpp',
|
||||
'icon.cpp',
|
||||
|
@@ -1,16 +0,0 @@
|
||||
import sys
|
||||
|
||||
build_dir = sys.argv[1]
|
||||
output_cpp = sys.argv[2]
|
||||
output_h = sys.argv[3]
|
||||
input_any = sys.argv[4]
|
||||
symbol_name = sys.argv[5]
|
||||
|
||||
with open(input_any, 'rb') as input_any_f:
|
||||
data = input_any_f.read()
|
||||
|
||||
with open(output_cpp, 'w') as output_cpp_f:
|
||||
output_cpp_f.write('#include "{0}"\nconst unsigned char {1}[] = {{ {2} }}; const unsigned int {1}_size = {3};\n'.format(output_h, symbol_name, ','.join([ str(b) for b in data ]), len(data)))
|
||||
|
||||
with open(output_h, 'w') as output_h_f:
|
||||
output_h_f.write('#pragma once\nextern const unsigned char {0}[]; extern const unsigned int {0}_size;\n'.format(symbol_name))
|
Reference in New Issue
Block a user