diff options
| author | Rémi Verschelde | 2016-10-30 18:57:40 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2016-11-01 00:35:16 +0100 |
| commit | d4c17700aa2f36f69978beda04e42ff2749de270 (patch) | |
| tree | 466f774d5fff723d6496e7259529c366fe01855a /servers/SCsub | |
| parent | 97c8508f5e4f57b1048830d44e76e1f4517fd449 (diff) | |
| download | godot-d4c17700aa2f36f69978beda04e42ff2749de270.tar.gz godot-d4c17700aa2f36f69978beda04e42ff2749de270.tar.zst godot-d4c17700aa2f36f69978beda04e42ff2749de270.zip | |
Diffstat (limited to 'servers/SCsub')
| -rw-r--r-- | servers/SCsub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/servers/SCsub b/servers/SCsub index 57b5b3675..8fab6c1dc 100644 --- a/servers/SCsub +++ b/servers/SCsub @@ -2,8 +2,8 @@ Import('env') -env.servers_sources=[] -env.add_source_files(env.servers_sources,"*.cpp") +env.servers_sources = [] +env.add_source_files(env.servers_sources, "*.cpp") Export('env') @@ -14,6 +14,6 @@ SConscript('audio/SCsub'); SConscript('spatial_sound/SCsub'); SConscript('spatial_sound_2d/SCsub'); -lib = env.Library("servers",env.servers_sources) +lib = env.Library("servers", env.servers_sources) env.Prepend(LIBS=[lib]) |
