blob: 2b80c054561458775c92e0585a8f5da3476103b4 (
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
44
45
46
|
//-----------------------------------------------------------------------------
// CHOREOOBJECTS.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$macro SRCDIR ".."
$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Configuration
{
$Compiler
{
$AdditionalIncludeDirectories "$BASE;..\game\shared;..\utils\common"
}
}
$Project "choreoobjects"
{
$Folder "Source Files"
{
$File "$SRCDIR\game\shared\choreoactor.cpp"
$File "$SRCDIR\game\shared\choreochannel.cpp"
$File "$SRCDIR\game\shared\choreoevent.cpp"
$File "$SRCDIR\game\shared\choreoscene.cpp"
$File "$SRCDIR\game\shared\sceneimage.cpp"
}
$Folder "Header Files"
{
$File "$SRCDIR\game\shared\choreoactor.h"
$File "$SRCDIR\game\shared\choreochannel.h"
$File "$SRCDIR\game\shared\choreoevent.h"
$File "$SRCDIR\game\shared\choreoscene.h"
$File "$SRCDIR\game\shared\ichoreoeventcallback.h"
$File "$SRCDIR\game\shared\sceneimage.h"
}
$Folder "Public Header Files"
{
$File "$SRCDIR\public\mathlib\mathlib.h"
$File "$SRCDIR\public\mathlib\vector.h"
$File "$SRCDIR\public\mathlib\vector2d.h"
}
}
|