mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
42 lines
804 B
Plaintext
42 lines
804 B
Plaintext
//-----------------------------------------------------------------------------
|
|
// DMXLOADER.VPC
|
|
//
|
|
// Project Script
|
|
//-----------------------------------------------------------------------------
|
|
|
|
$Macro SRCDIR ".."
|
|
|
|
$Include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
|
|
|
|
$Configuration
|
|
{
|
|
$Compiler
|
|
{
|
|
$PreprocessorDefinitions "$BASE;DMXLOADER_LIB"
|
|
}
|
|
}
|
|
|
|
$Project "Dmxloader"
|
|
{
|
|
$Folder "Source Files"
|
|
{
|
|
$File "dmxattribute.cpp"
|
|
$File "dmxelement.cpp"
|
|
$File "dmxloader.cpp"
|
|
$File "dmxloadertext.cpp"
|
|
$File "dmxserializationdictionary.cpp"
|
|
}
|
|
|
|
$Folder "Header Files"
|
|
{
|
|
$File "dmxserializationdictionary.h"
|
|
}
|
|
|
|
$Folder "Interface"
|
|
{
|
|
$File "$SRCDIR\public\dmxloader\dmxattribute.h"
|
|
$File "$SRCDIR\public\dmxloader\dmxelement.h"
|
|
$File "$SRCDIR\public\dmxloader\dmxloader.h"
|
|
}
|
|
}
|