Separate multi-words filenames by '_'

Rename foobar.ext to foo_bar.ext.

<https://github.com/Genymobile/scrcpy/pull/226#discussion_r209454865>
This commit is contained in:
Romain Vimont
2018-08-15 17:01:54 +02:00
parent f3f704d1ed
commit 536b31829a
26 changed files with 34 additions and 34 deletions

View File

@@ -1,22 +1,22 @@
src = [
'src/main.c',
'src/command.c',
'src/controlevent.c',
'src/control_event.c',
'src/controller.c',
'src/convert.c',
'src/decoder.c',
'src/device.c',
'src/file_handler.c',
'src/fpscounter.c',
'src/fps_counter.c',
'src/frames.c',
'src/inputmanager.c',
'src/lockutil.c',
'src/input_manager.c',
'src/lock_util.c',
'src/net.c',
'src/scrcpy.c',
'src/screen.c',
'src/server.c',
'src/strutil.c',
'src/tinyxpm.c',
'src/str_util.c',
'src/tiny_xpm.c',
]
if not get_option('crossbuild_windows')
@@ -147,9 +147,9 @@ executable('scrcpy', src, dependencies: dependencies, include_directories: src_d
### TESTS
tests = [
['test_control_event_queue', ['tests/test_control_event_queue.c', 'src/controlevent.c']],
['test_control_event_serialize', ['tests/test_control_event_serialize.c', 'src/controlevent.c']],
['test_strutil', ['tests/test_strutil.c', 'src/strutil.c']],
['test_control_event_queue', ['tests/test_control_event_queue.c', 'src/control_event.c']],
['test_control_event_serialize', ['tests/test_control_event_serialize.c', 'src/control_event.c']],
['test_strutil', ['tests/test_strutil.c', 'src/str_util.c']],
]
foreach t : tests