forked from LeenkxTeam/Kmake
17 lines
297 B
Python
17 lines
297 B
Python
{
|
|
'variables': {
|
|
'ada_sources': [ 'ada.cpp' ],
|
|
},
|
|
'targets': [
|
|
{
|
|
'target_name': 'ada',
|
|
'type': 'static_library',
|
|
'include_dirs': ['.'],
|
|
'direct_dependent_settings': {
|
|
'include_dirs': ['.'],
|
|
},
|
|
'sources': [ '<@(ada_sources)' ]
|
|
},
|
|
]
|
|
}
|