-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathresourcefile.vpc
More file actions
56 lines (48 loc) · 1.35 KB
/
resourcefile.vpc
File metadata and controls
56 lines (48 loc) · 1.35 KB
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
47
48
49
50
51
52
53
54
55
56
//-----------------------------------------------------------------------------
// RESOURCEFILE.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$macro SRCDIR ".."
$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Configuration
{
$PreBuildEvent
{
// $CommandLine "schemacompiler -schproj resourcefile.schproj2" "\n" "$BASE"
}
}
$Project "resourcefile"
{
$Folder "Source Files"
{
$File "resourcedictionary.cpp"
$File "resourcefile.cpp"
$File "resourceintrospection.cpp"
$File "resourcestream.cpp"
}
// TODO: VPC should keep the schproj2 in sync with this
$Folder "Schema Headers"
{
$File "$SRCDIR\public\resourcefile\schema\particles.g.h"
$File "$SRCDIR\public\resourcefile\schema\resourceextreflist.g.h"
$File "$SRCDIR\public\resourcefile\schema\resourceidlist.g.h"
$File "$SRCDIR\public\resourcefile\schema\sheet.g.h"
}
$Folder "Schema Script"
{
$File "resourcefile.schproj2"
}
$Folder "Header Files"
{
}
$Folder "Public Header Files"
{
$File "$SRCDIR\public\resourcefile\schema.h"
$File "$SRCDIR\public\resourcefile\resourcedictionary.h"
$File "$SRCDIR\public\resourcefile\resourcefile.h"
$File "$SRCDIR\public\resourcefile\resourceintrospection.h"
$File "$SRCDIR\public\resourcefile\resourcestream.h"
$File "$SRCDIR\public\resourcefile\resourcetype.h"
}
}