2020-04-22 16:56:21 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// UNICODE.VPC
|
|
|
|
//
|
|
|
|
// Project Script
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
$Macro SRCDIR ".."
|
2022-01-13 14:18:38 +00:00
|
|
|
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
|
2020-04-22 16:56:21 +00:00
|
|
|
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
|
|
|
|
|
|
|
|
$Configuration "Debug"
|
|
|
|
{
|
|
|
|
$Compiler
|
|
|
|
{
|
|
|
|
$PreprocessorDefinitions "$BASE;UNICODE_EXPORTS"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$Configuration "Release"
|
|
|
|
{
|
|
|
|
$Compiler
|
|
|
|
{
|
|
|
|
$PreprocessorDefinitions "$BASE;UNICODE_EXPORTS"
|
|
|
|
}
|
|
|
|
|
|
|
|
$Linker
|
|
|
|
{
|
|
|
|
$AdditionalDependencies "$BASE unicows.lib"
|
|
|
|
|
|
|
|
$SystemLibraries "iconv;z" [$OSXALL]
|
|
|
|
|
|
|
|
$SystemLibraries "rt" [$LINUXALL]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$Project "Unicode"
|
|
|
|
{
|
|
|
|
$Folder "Source Files"
|
|
|
|
{
|
|
|
|
$File "unicode.cpp"
|
|
|
|
}
|
|
|
|
}
|