24 lines
812 B
Plaintext
24 lines
812 B
Plaintext
// Game - Lib/Dll
|
|
//------------------------------------------------------------------------------
|
|
{
|
|
.ProjectName = 'Game'
|
|
.ProjectPath = 'Game'
|
|
|
|
// Library Configurations
|
|
//--------------------------------------------------------------------------
|
|
ForEach( .BuildConfigName in .BuildConfigs )
|
|
{
|
|
#if __WINDOWS__
|
|
.ProjectConfig = [ Using( .'Project_x64_$BuildConfigName$' ) ]
|
|
^ProjectConfigs + .ProjectConfig
|
|
#endif
|
|
}
|
|
|
|
VCXProject( '$ProjectName$' )
|
|
{
|
|
.ProjectOutput = '$ProjectPath$/$ProjectName$.vcxproj'
|
|
.ProjectBasePath = '$ProjectPath$/'
|
|
.ProjectInputPaths = .ProjectBasePath
|
|
.ProjectConfigs = .ProjectConfigs
|
|
}
|
|
} |