mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 13:55:36 +08:00
13 lines
616 B
Python
13 lines
616 B
Python
import os
|
||
#妈的,不知道为什么我重装系统后,装了vs2017 cmake也识别不到,只能手动改了。
|
||
for f in ['../build/x86_zh_xp','../build/x86_xp']:
|
||
for dirname,_,fs in os.walk(f):
|
||
for ff in fs:
|
||
if ff.endswith('.vcxproj')==False:continue
|
||
if ff.endswith('QtLoader.vcxproj'):continue
|
||
path=os.path.join(dirname,ff)
|
||
with open(path,'r',encoding='utf-8-sig') as pf:
|
||
file=pf.read()
|
||
file=file.replace('>v143<','>v141_xp<')
|
||
with open(path,'w',encoding='utf-8-sig') as pf:
|
||
pf.write(file) |