This file contains hidden or 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
| /*============================================================================ | |
| NVIDIA FXAA 3.11 by TIMOTHY LOTTES | |
| ------------------------------------------------------------------------------ | |
| COPYRIGHT (C) 2010, 2011 NVIDIA CORPORATION. ALL RIGHTS RESERVED. | |
| ------------------------------------------------------------------------------ | |
| TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, THIS SOFTWARE IS PROVIDED |
This file contains hidden or 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
| @echo off | |
| del *.bat | |
| del *.exe | |
| del *.dll | |
| del *.pdb | |
| rmdir /S /Q .vs\ | |
| del *.obj | |
| del *.map | |
| del *.lib |
This file contains hidden or 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
| @echo off | |
| set file_name=%1 | |
| if defined file_name goto :ok | |
| echo. && echo error: must provide a file | |
| :ok | |
| (echo @echo off && echo. && echo cl -nologo -MTd -Gm- -GR- -EHa- -Od -Oi -fp:fast -WX -W4 -wd4201 -wd4100 -wd4189 -wd4505 -FC -Z7 %file_name% /link -subsystem:console -incremental:no -opt:ref) > build.bat |
This file contains hidden or 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
| @echo off | |
| subst w: c:\work | |
| w: | |
| cls | |
| call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 |
This file contains hidden or 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
| @echo off | |
| rem ~ | |
| rem Este é um Script que eu uso pra configurar rapidamente um "ambiente" pra mim | |
| rem começar a programar um projeto simples ou fazer algum teste. O Script deve | |
| rem ser executado na pasta raiz do projeto e deve receber apenas um argumento | |
| rem (que é o nome do arquivo que vai ser criado e "marcado" para compilação). | |
| rem ~ | |
| set file_name=%1 |