-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make Scintilla AutoC while typing, add optional setting
- Loading branch information
Showing
8 changed files
with
141 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ tags | |
*.lib | ||
*.iobj | ||
*.ipdb | ||
*.user | ||
*.zip | ||
bin/* | ||
bin64/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<Project> | ||
|
||
<!-- | ||
Rename PROJECTNAME to the same as the *.vcxproj file in your project. | ||
|
||
Or, import into that file by adding before the last closing tag: | ||
|
||
<Import Project="PROJECTNAME.vcxproj.user"/> | ||
|
||
Then, call with: | ||
|
||
msbuild /target:zip | ||
--> | ||
|
||
<Target Name="Zip" DependsOnTargets="Build"> | ||
<Exec Command="if not exist $(OutDir)$(TargetName) mkdir $(OutDir)$(TargetName)"/> | ||
<Exec Command="copy $(OutDir)$(TargetName)$(TargetExt) $(OutDir)$(TargetName)"/> | ||
<Exec Command="copy Config\QuickText.default.ini $(OutDir)$(TargetName)"/> | ||
<Exec Command="for /f %%i in ('powershell -Command "(Get-Item $(OutDir)$(TargetName)$(TargetExt)).VersionInfo.ProductVersion"') do del $(OutDir)$(TargetName)-v%%i-%Platform%.zip"/> | ||
<Exec Command="for /f %%i in ('powershell -Command "(Get-Item $(OutDir)$(TargetName)$(TargetExt)).VersionInfo.ProductVersion"') do cd $(OutDir)$(TargetName) %26%26 zip -r ..\$(TargetName)-v%%i-%Platform%.zip *"/> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters