mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
30 lines
1.1 KiB
Python
Executable file
30 lines
1.1 KiB
Python
Executable file
#!/usr/bin/python3
|
|
|
|
import os
|
|
import re
|
|
import subprocess
|
|
|
|
dir_path = os.path.dirname(os.path.realpath(__file__))
|
|
filename = '../chatterino.pro'
|
|
data = ""
|
|
|
|
with open(filename, 'r') as project:
|
|
data = project.read()
|
|
sources_list = subprocess.getoutput("find ../src -path ../src/CMakeFiles -prune -false -o -type f -name '*.cpp' | sed 's_\../_ _g'").splitlines()
|
|
sources_list.sort(key=str.lower)
|
|
sources = "\n".join(sources_list)
|
|
sources = re.sub(r'$', r' \\\\', sources, flags=re.MULTILINE)
|
|
sources += "\n"
|
|
data = re.sub(r'^SOURCES(.|\r|\n)*?^$', 'SOURCES += \\\n' + sources, data, flags=re.MULTILINE)
|
|
|
|
headers_list = subprocess.getoutput("find ../src -path ../src/CMakeFiles -prune -false -o -type f -name '*.hpp' | sed 's_\../_ _g'").splitlines()
|
|
headers_list.sort(key=str.lower)
|
|
headers = "\n".join(headers_list)
|
|
headers = re.sub(r'$', r' \\\\', headers, flags=re.MULTILINE)
|
|
headers += "\n"
|
|
data = re.sub(r'^HEADERS(.|\r|\n)*?^$', 'HEADERS += \\\n' + headers, data, flags=re.MULTILINE)
|
|
|
|
with open(filename, 'w') as project:
|
|
project.write(data)
|
|
|