Create documentation on GHA

This commit is contained in:
Alexander Grund 2020-07-15 17:55:53 +02:00
parent 62494bccfd
commit 3d44f9bfda
No known key found for this signature in database
GPG key ID: E92C451FC21EF13F
6 changed files with 111 additions and 48 deletions

View file

@ -46,7 +46,15 @@ project example
rule compile-examples
{
for name in [ glob example/*.cpp ] { compile $(name) ; }
local examples ;
for name in [ glob example/*.cpp ]
{
local compile-target = [ compile $(name) ] ;
explicit $(compile-target) ;
examples += $(compile-target) ;
}
return $(examples) ;
}
alias mock_examples : [ compile-examples ] ;
explicit mock_examples ;