diff options
| author | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
|---|---|---|
| committer | FluorescentCIAAfricanAmerican <[email protected]> | 2020-04-22 12:56:21 -0400 |
| commit | 3bf9df6b2785fa6d951086978a3e66f49427166a (patch) | |
| tree | 2c0f1f0c63c4832882bc93814ebd2c2b1c6224e5 /devtools/syncfrommirror/syncfrommirror.vpc | |
| download | archived-source-engine-2018-hl2-src-master.tar.xz archived-source-engine-2018-hl2-src-master.zip | |
Diffstat (limited to 'devtools/syncfrommirror/syncfrommirror.vpc')
| -rw-r--r-- | devtools/syncfrommirror/syncfrommirror.vpc | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/devtools/syncfrommirror/syncfrommirror.vpc b/devtools/syncfrommirror/syncfrommirror.vpc new file mode 100644 index 0000000..beac7f9 --- /dev/null +++ b/devtools/syncfrommirror/syncfrommirror.vpc @@ -0,0 +1,60 @@ +//----------------------------------------------------------------------------- +// SYNCFROMMIRROR.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR "..\.." +$Macro OUTBINDIR "$SRCDIR\devtools\bin" + +$Include "$SRCDIR\vpc_scripts\source_exe_win_win32_base.vpc" + +$Configuration +{ + $Compiler + { + $Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)" + $PrecompiledHeaderFile "Release/syncfrommirror.pch" + $EnableC++Exceptions "Yes (/EHsc)" + } +} + +$Project "Syncfrommirror" +{ + $Folder "Source Files" + { + -$File "$SRCDIR\public\tier0\memoverride.cpp" + + $File "Redir.cpp" + $File "Redirect.cpp" + $File "syncfrommirror.cpp" + $File "syncfrommirror.rc" + $File "syncfrommirrorDlg.cpp" + $File "StdAfx.cpp" + { + $Configuration + { + $Compiler + { + $Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)" + } + } + } + } + + $Folder "Header Files" + { + $File "Redir.h" + $File "Redirect.h" + $File "Resource.h" + $File "StdAfx.h" + $File "syncfrommirror.h" + $File "syncfrommirrorDlg.h" + } + + $Folder "Resource Files" + { + $File "res\syncfrommirror.ico" + $File "res\syncfrommirror.rc2" + } +} |