mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
20 lines
351 B
Plaintext
20 lines
351 B
Plaintext
.echo "Generating project-tests.gypi..."
|
|
.output "project-tests.gypi"
|
|
{
|
|
'targets': [
|
|
.for test
|
|
{
|
|
'target_name': '$(name)',
|
|
'type': 'executable',
|
|
'sources': [
|
|
'../../tests/$(name).cpp',
|
|
'../../tests/testutil.hpp'
|
|
],
|
|
'dependencies': [
|
|
'libzmq'
|
|
],
|
|
}$(last ()?? ""? ",")
|
|
.endfor
|
|
]
|
|
}
|