#! /usr/bin/env python
#----------------------------------------------------------------------------
# Project:  NintendoWare
# File:     SConstruct
#
# Copyright (C)2011-2013 Nintendo/HAL Laboratory, Inc.  All rights reserved.
#
# These coded instructions, statements, and computer programs contain proprietary
# information of Nintendo and/or its licensed developers and are protected by
# national and international copyright laws. They may not be disclosed to third
# parties or copied or duplicated in any form, in whole or in part, without the
# prior written consent of Nintendo.
# 
# The content herein is highly confidential and should be handled accordingly.
#----------------------------------------------------------------------------
import os, sys
sys.path.append(os.path.join(os.environ['NW_DEV_ROOT'], r'build\scons'))
import NWBuild

#-------------------------------------------------------------------------------

NWBuild.SubDirs([
])

#-------------------------------------------------------------------------------

SOLUTION = 'ToolDevelopmentKit.sln'

ARTIFACTS = [
    { 'files' : [
            'ToolDevelopmentKit.dll',
            ],
      'dir' : r'$BINDIR\$MSBUILDCONFIG',
      },
    ]

ARTIFACTS_EN = [
    { 'files' : [
            'ToolDevelopmentKit.resources.dll',
            ],
      'dir' : r'$LOCALIZEASSEMBLY_DIR',
      },
    ]

#-------------------------------------------------------------------------------

env = NWBuild.Environment()

package = NWBuild.Package.CreatePackage('ToolDevelopmentKit')

NWBuild.BuildMsvsSolution(
    env, SOLUTION, package, None, ARTIFACTS, ARTIFACTS_EN,
    localize=True,fuscation=False)
