Cramming PhysX in there
More PhysX work More PhysX work
This commit is contained in:
1
modules/PhysX/physx/physx-sys-extract/.gitignore
vendored
Normal file
1
modules/PhysX/physx/physx-sys-extract/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
/target
|
||||
56
modules/PhysX/physx/physx-sys-extract/Cargo.lock
generated
Normal file
56
modules/PhysX/physx/physx-sys-extract/Cargo.lock
generated
Normal file
@@ -0,0 +1,56 @@
|
||||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
version = 3
|
||||
|
||||
[[package]]
|
||||
name = "bitflags"
|
||||
version = "1.3.2"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
||||
|
||||
[[package]]
|
||||
name = "cc"
|
||||
version = "1.0.99"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "96c51067fd44124faa7f870b4b1c969379ad32b2ba805aa959430ceaa384f695"
|
||||
dependencies = [
|
||||
"jobserver",
|
||||
"libc",
|
||||
"once_cell",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "jobserver"
|
||||
version = "0.1.31"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
||||
dependencies = [
|
||||
"libc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "libc"
|
||||
version = "0.2.155"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
||||
|
||||
[[package]]
|
||||
name = "once_cell"
|
||||
version = "1.19.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
||||
|
||||
[[package]]
|
||||
name = "physx-sys"
|
||||
version = "0.11.5"
|
||||
dependencies = [
|
||||
"bitflags",
|
||||
"cc",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "physx-sys-extract"
|
||||
version = "0.1.0"
|
||||
dependencies = [
|
||||
"physx-sys",
|
||||
]
|
||||
7
modules/PhysX/physx/physx-sys-extract/Cargo.toml
Normal file
7
modules/PhysX/physx/physx-sys-extract/Cargo.toml
Normal file
@@ -0,0 +1,7 @@
|
||||
[package]
|
||||
name = "physx-sys-extract"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
physx-sys = { path = "../physx-sys" }
|
||||
3
modules/PhysX/physx/physx-sys-extract/src/main.rs
Normal file
3
modules/PhysX/physx/physx-sys-extract/src/main.rs
Normal file
@@ -0,0 +1,3 @@
|
||||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
||||
Reference in New Issue
Block a user