forked from SirLynix/obs-kinect
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua.default
More file actions
49 lines (43 loc) · 1.92 KB
/
Copy pathconfig.lua.default
File metadata and controls
49 lines (43 loc) · 1.92 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
-- Example config, copy to config.lua before building
-- Where is libobs located (found in OBS repository)
LibObs = {
Include = "../obs-studio/libobs",
Lib32 = "../obs-studio/build32/libobs/Release",
Lib64 = "../obs-studio/build64/libobs/Release",
}
-- Where is Azure Kinect SDK located
KinectSdkAzure = [[C:\Program Files\Azure Kinect SDK v1.4.1\sdk]]
-- Where to copy generated plugin file after a successful build (depending on configuration/arch)
-- If you don't want the plugin to be copied, just comment out/delete thoses lines
CopyToDebug32 = [[C:\Users\Lynix\Documents\GitHub\obs-studio\build32\rundir\Debug\obs-plugins\32bit]]
CopyToDebug64 = [[C:\Users\Lynix\Documents\GitHub\obs-studio\build64\rundir\Debug\obs-plugins\64bit]]
CopyToRelease32 = [[C:\Users\Lynix\Documents\GitHub\obs-studio\build32\rundir\Release\obs-plugins\32bit]]
CopyToRelease64 = [[C:\Users\Lynix\Documents\GitHub\obs-studio\build64\rundir\Release\obs-plugins\64bit]]
-- You shouldn't have to change anything under this line
if (os.getenv("KINECTSDK10_DIR")) then
KinectSdk10 = {
Include = "$(KINECTSDK10_DIR)/inc",
Lib32 = "$(KINECTSDK10_DIR)/lib/x86",
Lib64 = "$(KINECTSDK10_DIR)/lib/amd64",
}
elseif (os.istarget("windows")) then
print("Kinect SDK doesn't seem to be installed, skipping KinectSdk10 backend")
end
if (os.getenv("KINECT_TOOLKIT_DIR")) then
KinectSdk10Toolkit = {
Include = "$(KINECT_TOOLKIT_DIR)/inc",
Lib32 = "$(KINECT_TOOLKIT_DIR)/lib/x86",
Lib64 = "$(KINECT_TOOLKIT_DIR)/lib/amd64"
}
elseif (os.istarget("windows")) then
print("Kinect SDK ToolKit doesn't seem to be installed, dedicated background removal won't be available")
end
if (os.getenv("KINECTSDK20_DIR")) then
KinectSdk20 = {
Include = "$(KINECTSDK20_DIR)/inc",
Lib32 = "$(KINECTSDK20_DIR)/lib/x86",
Lib64 = "$(KINECTSDK20_DIR)/lib/x64",
}
elseif (os.istarget("windows")) then
print("Kinect SDK 2 doesn't seem to be installed, skipping KinectSdk20 backend")
end