-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbitmap.vpc
More file actions
60 lines (53 loc) · 1.46 KB
/
Copy pathbitmap.vpc
File metadata and controls
60 lines (53 loc) · 1.46 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
57
58
59
60
//-----------------------------------------------------------------------------
// BITMAP.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$Macro SRCDIR ".."
$include "$SRCDIR\vpc_scripts\source_lib_base.vpc"
$Configuration
{
$Compiler
{
$AdditionalIncludeDirectories "$BASE;$SRCDIR\thirdparty\stb"
// dimhotepus: Exclude nvtc & ATI compress, as proprietary.
$PreprocessorDefinitions "$BASE;NO_NVTC" [$NO_NVTC]
$PreprocessorDefinitions "$BASE;NO_ATI_COMPRESS" [$NO_ATI_COMPRESS]
}
}
$Project "bitmap"
{
$Folder "Source Files"
{
$File "ImageByteSwap.cpp"
$File "colorconversion.cpp"
$File "float_bm.cpp"
$File "float_bm2.cpp"
$File "float_bm3.cpp"
$File "float_bm4.cpp" [$WINDOWS]
$File "float_bm_bilateral_filter.cpp"
$File "float_cube.cpp"
$File "imageformat.cpp"
$File "psd.cpp"
$File "resample.cpp"
$File "tgaloader.cpp"
$File "tgawriter.cpp"
$File "bitmap.cpp"
}
$Folder "Header Files"
{
$File "$SRCDIR\public\bitmap\bitmap.h"
$File "$SRCDIR\public\bitmap\float_bm.h"
$File "$SRCDIR\public\bitmap\imageformat.h"
$File "$SRCDIR\public\bitmap\psd.h"
$File "$SRCDIR\public\bitmap\tgaloader.h"
$File "$SRCDIR\public\bitmap\tgawriter.h"
$File "$SRCDIR\thirdparty\stb\stb_dxt.h"
}
$Folder "Link Libraries" [$WINDOWS]
{
// dimhotepus: Exclude nvtc & ATI compress, as proprietary.
$Lib nvtc [!$NO_NVTC]
$Lib ATI_Compress_MT_VC10 [!$NO_ATI_COMPRESS]
}
}