diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-17 22:09:28 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2014-03-17 22:09:28 +0200 |
| commit | bc97fb5c85bd7d5c1d42f8409e3cf1f7f193003e (patch) | |
| tree | 360b1d019df6ba299de7da63413516570e0b3c54 /coredata.py | |
| parent | 9d32518c22b0889f91677ae0602d9324c1bdc431 (diff) | |
| download | meson-bc97fb5c85bd7d5c1d42f8409e3cf1f7f193003e.tar.gz | |
Backend work is start.
Diffstat (limited to 'coredata.py')
| -rw-r--r-- | coredata.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/coredata.py b/coredata.py index 6ec58ad6f..42a70d1c9 100644 --- a/coredata.py +++ b/coredata.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -import pickle, os +import pickle, os, uuid version = '0.14.0-research' @@ -23,6 +23,8 @@ version = '0.14.0-research' class CoreData(): def __init__(self, options): + self.guid = str(uuid.uuid4()) + self.target_guids = {} self.version = version self.prefix = options.prefix self.libdir = options.libdir |
