Skip to content

Commit 6d779f3

Browse files
committed
yawn
1 parent 9f8d30c commit 6d779f3

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

xmake.lua

+10
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,16 @@ target("cyber_engine_tweaks")
105105
cprint("Cyber Engine Tweaks installed at: ${underline}%s", "$(installpath)")
106106
end)
107107

108+
target("fake_cyber_engine_tweaks")
109+
set_kind("shared")
110+
set_group("yawn")
111+
set_filename("cyber_engine_tweaks.asi")
112+
add_files("yawn/dllmain.cpp")
113+
114+
on_package(function(target)
115+
os.cp(target:targetfile(), "package/bin/x64/plugins/")
116+
end)
117+
108118
option("installpath")
109119
set_default("installpath")
110120
set_showmenu(true)

yawn/dllmain.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#include <windows.h>
2+
3+
BOOL WINAPI DllMain(
4+
HINSTANCE hinstDLL, // handle to DLL module
5+
DWORD fdwReason, // reason for calling function
6+
LPVOID lpvReserved ) // reserved
7+
{
8+
return TRUE;
9+
}

0 commit comments

Comments
 (0)