diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-10 21:49:41 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2015-12-10 21:49:41 +0200 |
| commit | 43b07729aa058ce8af1aa4d7f3c445f61f39c42a (patch) | |
| tree | a3784e2b3f5fdf0dbde333cdeaeb20ead1889a15 /compilers.py | |
| parent | 7ed515dacc726b6413ff720b7c125670b60543a1 (diff) | |
| download | meson-43b07729aa058ce8af1aa4d7f3c445f61f39c42a.tar.gz | |
Reworked swift code so now can use multiple source files in one target.
Diffstat (limited to 'compilers.py')
| -rw-r--r-- | compilers.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compilers.py b/compilers.py index 41c4ecd29..c496a5d5a 100644 --- a/compilers.py +++ b/compilers.py @@ -1012,6 +1012,9 @@ class SwiftCompiler(Compiler): def get_std_exe_link_args(self): return ['-emit-executable'] + def get_module_args(self, modname): + return ['-module-name', modname] + def build_rpath_args(self, *args): return [] # FIXME |
