forked from nillerusr/source-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinputsystem.vpc
55 lines (49 loc) · 1.36 KB
/
inputsystem.vpc
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
//-----------------------------------------------------------------------------
// INPUTSYSTEM.VPC
//
// Project Script
//-----------------------------------------------------------------------------
$macro SRCDIR ".."
$Macro OUTBINDIR "$LIBPUBLIC"
$include "$SRCDIR\vpc_scripts\source_dll_base.vpc"
$Configuration
{
$Compiler
{
$AdditionalIncludeDirectories "$BASE;$SRCDIR\thirdparty\SDL2" [!$SDL] // If $SDL, then we already have this from source_video_base.vpc.
$PreprocessorDefinitions "$BASE;VERSION_SAFE_STEAM_API_INTERFACES"
}
$Linker
{
$SystemLibraries "iconv" [$OSXALL]
$SystemFrameworks "IOKit;Carbon;ForceFeedback"
}
}
$Project "inputsystem"
{
$Folder "Source Files"
{
$File "inputsystem.cpp"
$File "inputsystem.h"
$File "joystick_sdl.cpp"
$File "novint.cpp" [$WIN32]
$File "key_translation.cpp"
$File "key_translation.h"
$File "steamcontroller.cpp"
}
$Folder "Public Headers"
{
$File "$SRCDIR\public\inputsystem\AnalogCode.h"
$File "$SRCDIR\public\inputsystem\ButtonCode.h"
$File "$SRCDIR\public\inputsystem\iinputsystem.h"
$File "$SRCDIR\public\inputsystem\InputEnums.h"
$File "$SRCDIR\dx9sdk\include\xinput.h" [$WIN32]
}
$Folder "Link Libraries"
{
$Lib tier1
$Lib tier2
$ImpLib SDL2
$Implib "steam_api" [($WIN32||$WIN64||$POSIX||$PS3)&&!$NO_STEAM]
}
}