aboutsummaryrefslogtreecommitdiff
path: root/environment.py
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-06-14 19:25:46 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-06-14 19:25:46 +0300
commit34f1042a7e0c52f9038851beb6497af013e8ef25 (patch)
tree701faf59b0994a0d77578b5b518784a053611aeb /environment.py
parent73b9353a1081e6f7d6c2c3e4fc76b224ef33d874 (diff)
downloadmeson-34f1042a7e0c52f9038851beb6497af013e8ef25.zip
meson-34f1042a7e0c52f9038851beb6497af013e8ef25.tar.gz
meson-34f1042a7e0c52f9038851beb6497af013e8ef25.tar.bz2
Minor MSVC tweak.
Diffstat (limited to 'environment.py')
-rwxr-xr-xenvironment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/environment.py b/environment.py
index ad7328d..0212dbd 100755
--- a/environment.py
+++ b/environment.py
@@ -275,10 +275,10 @@ class VisualStudioCCompiler(CCompiler):
return ['/OUT:' + outputname]
def get_pic_flags(self):
- return []
+ return ['/LD']
def get_std_shared_lib_link_flags(self):
- return []
+ return ['/DLL']
def sanity_check(self, work_dir):
source_name = os.path.join(work_dir, 'sanitycheckc.c')