diff options
Diffstat (limited to 'utils/sfmgen/sfmgen.vpc')
| -rw-r--r-- | utils/sfmgen/sfmgen.vpc | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/utils/sfmgen/sfmgen.vpc b/utils/sfmgen/sfmgen.vpc new file mode 100644 index 0000000..d9d74f9 --- /dev/null +++ b/utils/sfmgen/sfmgen.vpc @@ -0,0 +1,43 @@ +//----------------------------------------------------------------------------- +// SFMGEN.VPC +// +// Project Script +//----------------------------------------------------------------------------- + +$Macro SRCDIR "..\.." +$Macro OUTBINDIR "$SRCDIR\..\game\bin" + +$Include "$SRCDIR\vpc_scripts\source_exe_con_base.vpc" + +$Project "sfmgen" +{ + $Folder "Source Files" + { + $File "sfmgen.cpp" + } + + $Folder "External" + { + $File "$SRCDIR\public\movieobjects/movieobjects.cpp" + $File "$SRCDIR\public\interpolatortypes.cpp" + $File "$SRCDIR\public\sentence.cpp" + } + + $Folder "External Header Files" + { + $File "$SRCDIR\public\sentence.h" + $File "$SRCDIR\public\interpolatortypes.h" + } + + $Folder "Link Libraries" + { + $Lib appframework + $Lib datamodel + $Lib dmserializers + $Lib mathlib + $Lib tier2 + $Lib tier3 + $Lib movieobjects + $Lib sfmobjects + } +} |