Use the same cc file extension for network test as other files in project

This commit is contained in:
Joni Räsänen 2021-11-17 13:04:45 +02:00
parent 7aadcae731
commit 5b97e8c4a9
2 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ die "invalid role" if !grep (/$role/, ("server", "s", "client", "c", "a", "send"
die "zero size not allowed" if ($size eq 0);
# build network program
system "g++ ./udperf.cpp -o udperf";
system "g++ ./udperf.cc -o udperf";
if (grep (/$role/, ("server", "s", "receive", "receiver", "recv"))) {
$role = "-s";