Skip to content

Commit

Permalink
Initial commit. Empty SConstruct script that prints out the machine's…
Browse files Browse the repository at this point in the history
… platform.

git-svn-id: https://fourtwosix.jira.com/svn/TXPETE/trunk@10525 e6edf6fb-f266-4316-afb4-e53d95876a76
  • Loading branch information
jon committed May 5, 2011
1 parent d160ba8 commit 8d3d144
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -0,0 +1,2 @@
*.dblite

14 changes: 14 additions & 0 deletions SConstruct
@@ -0,0 +1,14 @@
#!/usr/bin/env python
# encoding: utf-8
"""
SConstruct.py
Created by Jon Stewart on 2010-01-04.
Copyright (c) 2010 Lightbox Technologies, Inc. All rights reserved.
"""

import sys
import os
import platform

print("Architecture is %s" % platform.platform())

0 comments on commit 8d3d144

Please sign in to comment.