diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-17 23:06:39 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-17 23:06:39 +0200 |
commit | 303d212d0a6f2dcda1e38a3afe50a644475110a5 (patch) | |
tree | 466729963834e469ab533d6e1d0ee55e826fb526 /interpreter.py | |
parent | 08c64d19d27d5c0ee9a8ada5055a1da563c564ae (diff) | |
download | meson-303d212d0a6f2dcda1e38a3afe50a644475110a5.zip meson-303d212d0a6f2dcda1e38a3afe50a644475110a5.tar.gz meson-303d212d0a6f2dcda1e38a3afe50a644475110a5.tar.bz2 |
A fledgling of a vcxproj.
Diffstat (limited to 'interpreter.py')
-rw-r--r-- | interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/interpreter.py b/interpreter.py index f1cdd8e..34d9721 100644 --- a/interpreter.py +++ b/interpreter.py @@ -1162,7 +1162,7 @@ class Interpreter(): l = targetclass(name, self.subdir, is_cross, sources, objs, self.environment, kwargs) self.build.targets[name] = l.held_object if name not in self.coredata.target_guids: - self.coredata.target_guids[name] = uuid.uuid4() + self.coredata.target_guids[name] = str(uuid.uuid4()) if self.environment.is_cross_build() and l.is_cross: txt = ' cross build ' else: |