|
@@ -1,6 +1,6 @@
|
|
|
import os
|
|
import os
|
|
|
|
|
|
|
|
-def generate_python_sources():
|
|
|
|
|
|
|
+def get_sources():
|
|
|
sources = {}
|
|
sources = {}
|
|
|
for file in sorted(os.listdir("python")):
|
|
for file in sorted(os.listdir("python")):
|
|
|
if not file.endswith(".py"):
|
|
if not file.endswith(".py"):
|
|
@@ -17,18 +17,31 @@ def generate_python_sources():
|
|
|
const_char_array.append('0')
|
|
const_char_array.append('0')
|
|
|
const_char_array = ','.join(const_char_array)
|
|
const_char_array = ','.join(const_char_array)
|
|
|
sources[key] = '{' + const_char_array + '}'
|
|
sources[key] = '{' + const_char_array + '}'
|
|
|
|
|
+ return sources
|
|
|
|
|
|
|
|
- header = '''#pragma once
|
|
|
|
|
|
|
+sources = get_sources()
|
|
|
|
|
+
|
|
|
|
|
+# use LF line endings instead of CRLF
|
|
|
|
|
+with open("include/pocketpy/_generated.h", "wt", encoding='utf-8', newline='\n') as f:
|
|
|
|
|
+ data = '''#pragma once
|
|
|
// generated by prebuild.py
|
|
// generated by prebuild.py
|
|
|
|
|
|
|
|
namespace pkpy{
|
|
namespace pkpy{
|
|
|
'''
|
|
'''
|
|
|
for key in sorted(sources.keys()):
|
|
for key in sorted(sources.keys()):
|
|
|
value = sources[key]
|
|
value = sources[key]
|
|
|
- header += f' inline const char kPythonLibs_{key}[] = {value};\n'
|
|
|
|
|
- header += '}\n'
|
|
|
|
|
- return header
|
|
|
|
|
|
|
+ data += f' extern const char kPythonLibs_{key}[];\n'
|
|
|
|
|
+ data += '} // namespace pkpy\n'
|
|
|
|
|
+ f.write(data)
|
|
|
|
|
|
|
|
-# use LF line endings instead of CRLF
|
|
|
|
|
-with open("include/pocketpy/_generated.h", "wt", encoding='utf-8', newline='\n') as f:
|
|
|
|
|
- f.write(generate_python_sources())
|
|
|
|
|
|
|
+with open("src/_generated.cpp", "wt", encoding='utf-8', newline='\n') as f:
|
|
|
|
|
+ data = '''// generated by prebuild.py
|
|
|
|
|
+#include "pocketpy/_generated.h"
|
|
|
|
|
+
|
|
|
|
|
+namespace pkpy{
|
|
|
|
|
+'''
|
|
|
|
|
+ for key in sorted(sources.keys()):
|
|
|
|
|
+ value = sources[key]
|
|
|
|
|
+ data += f' const char kPythonLibs_{key}[] = {value};\n'
|
|
|
|
|
+ data += '} // namespace pkpy\n'
|
|
|
|
|
+ f.write(data)
|