Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// VP4.VPC
|
|
|
|
//
|
|
|
|
// Project Script
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
$Macro SRCDIR "..\.."
|
|
|
|
$Macro OUTBINDIR "$LIBPUBLIC"
|
|
|
|
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_exe_base.vpc"
|
|
|
|
|
|
|
|
$Configuration
|
|
|
|
{
|
|
|
|
$Compiler
|
|
|
|
{
|
|
|
|
$Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
|
|
|
|
$PrecompiledHeaderFile "Debug/vp4.pch"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$Project "Vp4"
|
|
|
|
{
|
|
|
|
$Folder "Source Files"
|
|
|
|
{
|
|
|
|
$File "vp4dialog.cpp"
|
|
|
|
|
|
|
|
$File "main.cpp" \
|
|
|
|
"$SRCDIR\public\vgui_controls\vgui_controls.cpp"
|
|
|
|
{
|
|
|
|
$Configuration
|
|
|
|
{
|
|
|
|
$Compiler
|
|
|
|
{
|
|
|
|
$Create/UsePrecompiledHeader "Not Using Precompiled Headers"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$File "stdafx.cpp"
|
|
|
|
{
|
|
|
|
$Configuration
|
|
|
|
{
|
|
|
|
$Compiler
|
|
|
|
{
|
|
|
|
$Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$Folder "Header Files"
|
|
|
|
{
|
|
|
|
$File "stdafx.h"
|
|
|
|
$File "vp4dialog.h"
|
|
|
|
}
|
|
|
|
|
|
|
|
$Folder "Link Libraries"
|
|
|
|
{
|
|
|
|
$Lib appframework
|
|
|
|
$Lib tier3
|
|
|
|
$Lib tier2
|
|
|
|
$Lib vgui_controls
|
|
|
|
$Lib mathlib
|
|
|
|
}
|
|
|
|
}
|