chunihook: Add empty DLL

This commit is contained in:
Tau 2018-11-08 16:04:50 -05:00
parent e14c5436c2
commit 66132effd7
3 changed files with 25 additions and 0 deletions

4
chunihook/chunihook.def Normal file
View File

@ -0,0 +1,4 @@
LIBRARY chunihook
EXPORTS
DllMain@12 @1 NONAME

20
chunihook/meson.build Normal file
View File

@ -0,0 +1,20 @@
shared_library(
'chunihook',
name_prefix : '',
include_directories : inc,
implicit_include_directories : false,
vs_module_defs : 'chunihook.def',
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
link_with : [
board_lib,
jvs_lib,
nu_lib,
util_lib,
],
sources : [
],
)

View File

@ -22,4 +22,5 @@ subdir('jvs')
subdir('nu')
subdir('util')
subdir('chunihook')
subdir('minihook')