nu: Add empty static library

This commit is contained in:
Tau
2018-11-07 16:40:39 -05:00
parent c0b20d5a13
commit c340258be6
3 changed files with 16 additions and 0 deletions

2
nu/guid.c Normal file
View File

@ -0,0 +1,2 @@
#include <windows.h>
#include <initguid.h>

13
nu/meson.build Normal file
View File

@ -0,0 +1,13 @@
nu_lib = static_library(
'nu',
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
sources : [
'guid.c',
],
)