blob: fea3959f4a89b7680f530be3416e810d7258a5c2 (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
//-----------------------------------------------------------------------------
// FILESYSTEMOPENDIALOG.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR "..\.."
$Macro OUTBINDIR "$SRCDIR\..\game\bin"
$Include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
$Configuration
{
$Compiler
{
// Deprecated MBCS MFC libraries for VS 2013 (nafxcw.lib and nafxcwd.lib) can be downloaded from http://go.microsoft.com/?linkid=9832071
$PreprocessorDefinitions "$BASE;NO_WARN_MBCS_MFC_DEPRECATION"
$AdditionalIncludeDirectories "$BASE,..\common"
$PreprocessorDefinitions "$BASE;;WINVER=0x502"
$Create/UsePrecompiledHeader "Use Precompiled Header (/Yu)"
$PrecompiledHeaderFile "Debug/FileSystemOpenDialog.pch"
$EnableC++Exceptions "Yes (/EHsc)"
}
}
$Project "FileSystemOpenDialog"
{
$Folder "Source Files"
{
$File "$SRCDIR\public\tier0\afxmem_override.cpp"
$File "FileDialogApp.cpp"
$File "FileDialogApp.h"
$File "FileSystemOpenDlg.cpp"
$File "FileSystemOpenDlg.h"
$File "$SRCDIR\common\IFileSystemOpenDialog.h"
-$File "$SRCDIR\public\tier0\memoverride.cpp"
$File "$SRCDIR\public\tier0\memoverride.cpp"
{
$Configuration
{
$Compiler
{
$PreprocessorDefinitions "$BASE;NO_MEMOVERRIDE_NEW_DELETE"
$Create/UsePrecompiledHeader "Not Using Precompiled Headers"
}
}
}
$File "StdAfx.cpp"
{
$Configuration
{
$Compiler
{
$Create/UsePrecompiledHeader "Create Precompiled Header (/Yc)"
}
}
}
}
$Folder "Header Files"
{
$File "Resource.h"
$File "StdAfx.h"
}
$Folder "Resource Files"
{
$File "FileSystemOpenDialog.rc"
}
$Folder "Link Libraries"
{
$Lib $LIBCOMMON/libjpeg
}
}
|