blob: 9c90cf0fbea03e62ddb0a9e64af20c0de183932f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
//-----------------------------------------------------------------------------
// UNICODE.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR ".."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$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"
}
}
|