-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDependencies.lua
More file actions
28 lines (25 loc) · 1.4 KB
/
Dependencies.lua
File metadata and controls
28 lines (25 loc) · 1.4 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
IncludeDir = {}
IncludeDir.fmod = "%{wks.location}/Toshi/vendor/fmod/include"
IncludeDir.bink = "%{wks.location}/Toshi/vendor/bink/include"
IncludeDir.libogg = "%{wks.location}/Toshi/Vendor/libogg/include"
IncludeDir.libvorbis = "%{wks.location}/Toshi/Vendor/libvorbis/include"
IncludeDir.libtheora = "%{wks.location}/Toshi/Vendor/libtheora/include"
IncludeDir.theoraplay = "%{wks.location}/Toshi/Vendor/theoraplay/include"
IncludeDir.stb = "%{wks.location}/Toshi/Vendor/stb"
IncludeDir.dx8 = "%{wks.location}/Toshi/vendor/DX81/include"
IncludeDir.catch2 = "%{wks.location}/Tools/Vendor/Catch2/include"
IncludeDir.detours = "%{wks.location}/SDK/Vendor/Detours/include"
LibDir = {}
LibDir.fmod = "%{wks.location}/Toshi/vendor/fmod/lib"
LibDir.bink = "%{wks.location}/Toshi/vendor/bink/lib"
LibDir.dx8 = "%{wks.location}/Toshi/vendor/DX81/lib"
LibDir.catch2 = "%{wks.location}/Tools/Vendor/Catch2/lib"
LibDir.detours = "%{wks.location}/SDK/Vendor/Detours/lib/x86"
-- content of these folders should be copied to any client application
ClientContentCommon = "%{wks.location}Content/Common/"
ClientContentArch = "%{wks.location}Content"
-- modify paths based on architecture
--LibDir.fmod = LibDir.fmod .. "/" .. _OPTIONS["arch"] .. "/"
--LibDir.bink = LibDir.bink .. "/" .. _OPTIONS["arch"] .. "/"
LibDir.catch2 = LibDir.catch2 .. "/" .. _OPTIONS["arch"] .. "/"
ClientContentArch = ClientContentArch .. "/" .. _OPTIONS["arch"] .. "/"