mirror of
https://github.com/ValveSoftware/halflife.git
synced 2025-02-13 23:28:54 +03:00
11 lines
230 B
Meson
11 lines
230 B
Meson
project('git 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)
|