mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-02-13 07:08:56 +03:00
11 lines
236 B
Meson
11 lines
236 B
Meson
project('Mercurial outchecker', 'c')
|
|
|
|
sp = subproject('samplesubproject')
|
|
|
|
exe = executable('gitprog', 'prog.c',
|
|
include_directories : sp.get_variable('subproj_inc'),
|
|
link_with : sp.get_variable('subproj_lib'),
|
|
)
|
|
|
|
test('maintest', exe)
|