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

View File

@ -17,4 +17,5 @@ add_project_link_arguments(
inc = include_directories('.')
capnhook = subproject('capnhook')
subdir('nu')
subdir('util')

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',
],
)