Rename screen -> scrcpy -> main

Rename scrcpy.c to main.c (this file handles the command line parsing),
and screen.c to scrcpy.c (it exposes the entry point scrcpy()).
This commit is contained in:
Romain Vimont 2018-01-23 16:32:29 +01:00
commit 2c35220618
5 changed files with 592 additions and 592 deletions

View file

@ -1,7 +1,7 @@
project('scrcpy-app', 'c')
src = [
'src/scrcpy.c',
'src/main.c',
'src/command.c',
'src/control.c',
'src/controlevent.c',
@ -10,7 +10,7 @@ src = [
'src/frames.c',
'src/lockutil.c',
'src/netutil.c',
'src/screen.c',
'src/scrcpy.c',
'src/server.c',
'src/strutil.c',
]