-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from Rackover/native_rumble_support
Native rumble & FF support
- Loading branch information
Showing
38 changed files
with
3,295 additions
and
434 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,6 @@ | |
[submodule "deps/iw4-open-formats"] | ||
path = deps/iw4-open-formats | ||
url = https://github.com/iw4x/iw4-open-formats.git | ||
[submodule "deps/dualsense-windows"] | ||
path = deps/dualsense-windows | ||
url = [email protected]:Ohjurot/DualSense-Windows.git |
Submodule dualsense-windows
added at
0b869f
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
dlwin = { | ||
source = path.join(dependencies.basePath, "dualsense-windows/VS19_Solution/DualSenseWindows"), | ||
} | ||
|
||
function dlwin.import() | ||
links {"dualsense-windows"} | ||
|
||
dlwin.includes() | ||
end | ||
|
||
function dlwin.includes() | ||
includedirs { | ||
path.join(dlwin.source, "include"), | ||
} | ||
end | ||
|
||
|
||
function dlwin.project() | ||
project "dualsense-windows" | ||
language "C++" | ||
|
||
defines { | ||
"DS5W_BUILD_LIB" | ||
} | ||
|
||
includedirs { | ||
path.join(dlwin.source, "include"), | ||
path.join(dlwin.source, "src"), | ||
} | ||
|
||
files | ||
{ | ||
path.join(dlwin.source, "**.cpp"), | ||
path.join(dlwin.source, "**.h"), | ||
} | ||
|
||
warnings "Off" | ||
|
||
kind "StaticLib" | ||
end | ||
|
||
table.insert(dependencies, dlwin) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.