ROBOTestFrame/add_source [ Functions ]
FUNCTION
Add a single source file somewhere in Src/
INPUTS
- filepath -- path to a file.
- source_code -- the source code to go into this file
- binary -- write the raw bytes. [optional]
SOURCE
sub add_source { my $filepath = shift; my $source_code = shift; my $binary = shift; add_file( $source_directory, $filepath, $source_code, $binary ) }