Skip to content

Commit 386c0ba

Browse files
In The Beginning, There Was Nothing But Darkness
0 parents  commit 386c0ba

File tree

37 files changed

+1881
-0
lines changed

37 files changed

+1881
-0
lines changed

.cargo/config

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[build]
2+
target = "x86_64-pc-windows-msvc"
3+
4+
rustflags = [
5+
"-C", "panic=abort",
6+
7+
# Pre Link Args
8+
"-Z", "pre-link-arg=/NOLOGO",
9+
"-Z", "pre-link-arg=/NXCOMPAT",
10+
"-Z", "pre-link-arg=/NODEFAULTLIB",
11+
"-Z", "pre-link-arg=/SUBSYSTEM:NATIVE",
12+
"-Z", "pre-link-arg=/DRIVER",
13+
"-Z", "pre-link-arg=/DYNAMICBASE",
14+
"-Z", "pre-link-arg=/MANIFEST:NO",
15+
"-Z", "pre-link-arg=/PDBALTPATH:none",
16+
17+
# Post Link Args
18+
"-C", "link-arg=/OPT:REF,ICF",
19+
"-C", "link-arg=/ENTRY:driver_entry",
20+
"-C", "link-arg=/MERGE:.edata=.rdata",
21+
"-C", "link-arg=/MERGE:.rustc=.data",
22+
"-C", "link-arg=/INTEGRITYCHECK"
23+
]

.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
5+
6+
# These are backup files generated by rustfmt
7+
**/*.rs.bk

.vscode/c_cpp_properties.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"configurations": [
3+
{
4+
"name": "Win32",
5+
"includePath": [
6+
"${workspaceFolder}/**",
7+
"C:/Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/km"
8+
],
9+
"defines": [
10+
"_DEBUG",
11+
"UNICODE",
12+
"_UNICODE"
13+
],
14+
"windowsSdkVersion": "10.0.19041.0",
15+
"compilerPath": "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.28.29333/bin/Hostx64/x64/cl.exe",
16+
"cStandard": "c17",
17+
"cppStandard": "c++17",
18+
"intelliSenseMode": "windows-msvc-x64"
19+
}
20+
],
21+
"version": 4
22+
}

0 commit comments

Comments
 (0)