28 lines
871 B
Plaintext
28 lines
871 B
Plaintext
// Romeo - Documentation Tool executable
|
|
//------------------------------------------------------------------------------
|
|
{
|
|
.ProjectName = 'Romeo'
|
|
.ProjectPath = 'Romeo'
|
|
|
|
// 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
|
|
}
|
|
}
|