Include TypeScript files into installer

Include TypeScript auto-completion file & function list file into installer.
pull/10387/head
Don HO 2021-08-15 12:02:45 +02:00
parent f50061981a
commit 92b45d48c7
2 changed files with 20 additions and 2 deletions

View File

@ -147,6 +147,11 @@ SectionGroup "Auto-completion Files" autoCompletionComponent
SetOutPath "$INSTDIR\autoCompletion" SetOutPath "$INSTDIR\autoCompletion"
File ".\APIs\cobol.xml" File ".\APIs\cobol.xml"
${MementoSectionEnd} ${MementoSectionEnd}
${MementoSection} "TypeScript" TypeScript
SetOutPath "$INSTDIR\autoCompletion"
File ".\APIs\typescript.xml"
${MementoSectionEnd}
SectionGroupEnd SectionGroupEnd
@ -248,12 +253,16 @@ SectionGroup un.autoCompletionComponent
Delete "$INSTDIR\autoCompletion\lua.xml" Delete "$INSTDIR\autoCompletion\lua.xml"
SectionEnd SectionEnd
Section un.autoit Section un.AutoIt
Delete "$INSTDIR\autoCompletion\autoit.xml" Delete "$INSTDIR\autoCompletion\autoit.xml"
SectionEnd SectionEnd
Section un.cobol Section un.COBOL
Delete "$INSTDIR\autoCompletion\cobol.xml" Delete "$INSTDIR\autoCompletion\cobol.xml"
SectionEnd SectionEnd
Section un.TypeScript
Delete "$INSTDIR\autoCompletion\typescript.xml"
SectionEnd
SectionGroupEnd SectionGroupEnd

View File

@ -173,6 +173,11 @@ SectionGroup "Function List Files" functionListComponent
File ".\functionList\rust.xml" File ".\functionList\rust.xml"
${MementoSectionEnd} ${MementoSectionEnd}
${MementoSection} "TypeScript" TypeScript_FL
SetOutPath "$INSTDIR\functionList"
File ".\functionList\typescript.xml"
${MementoSectionEnd}
SetOverwrite off SetOverwrite off
${MementoSection} "Override Map" OverrideMap_FL ${MementoSection} "Override Map" OverrideMap_FL
SetOutPath "$INSTDIR\functionList" SetOutPath "$INSTDIR\functionList"
@ -311,5 +316,9 @@ SectionGroup un.functionListComponent
Delete "$INSTDIR\functionList\rust.xml" Delete "$INSTDIR\functionList\rust.xml"
SectionEnd SectionEnd
Section un.TypeScript_FL
Delete "$INSTDIR\functionList\typescript.xml"
SectionEnd
SectionGroupEnd SectionGroupEnd