Example #1
0
def dist():
    from sys import stderr
    print >>stderr, '--- dist ---\n'

    from scripts import dist
    dist.TMP_DIR = TMP_DIR + '\\dist'

    dist.BASENAME_32BIT_DIR = 'SCFF-DirectShow-Filter-Win32'
    dist.BASENAME_64BIT_DIR = 'SCFF-DirectShow-Filter-x64'
    dist.DIST_32BIT_DIR = dist.TMP_DIR + '\\' + dist.BASENAME_32BIT_DIR
    dist.DIST_64BIT_DIR = dist.TMP_DIR + '\\' + dist.BASENAME_64BIT_DIR

    dist.FILES_32BIT = [
        ROOT_DIR + '\\README.md',
        ROOT_DIR + '\\LICENSE',
        ROOT_DIR + '\\bin\\Release\\scff_app.exe',
        ROOT_DIR + '\\bin\\Release\\SCFF.GUI.exe',
        ROOT_DIR + '\\bin\\Release\\Microsoft.Windows.Shell.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Common.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Interprocess.dll',
        ROOT_DIR + '\\bin\\Release_Win32\\*.dll',
        ROOT_DIR + '\\bin\\Release_Win32\\*.ax',
        ROOT_DIR + '\\tools\\bin\\regsvrex32.exe',
        ROOT_DIR + '\\tools\\dist\\Microsoft .NET Framework 4 Client Profile.url',
        ROOT_DIR + '\\tools\\dist\\Visual C++ Redistributable for Visual Studio 2012 Update 3.url',
        ROOT_DIR + '\\tools\\dist\\install.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall.bat',
        ROOT_DIR + '\\tools\\dist\\install_regsvr.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall_regsvr.bat',
        ]
    dist.FILES_64BIT = [
        ROOT_DIR + '\\README.md',
        ROOT_DIR + '\\LICENSE',
        ROOT_DIR + '\\bin\\Release\\scff_app.exe',
        ROOT_DIR + '\\bin\\Release\\SCFF.GUI.exe',
        ROOT_DIR + '\\bin\\Release\\Microsoft.Windows.Shell.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Common.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Interprocess.dll',
        ROOT_DIR + '\\bin\\Release_x64\\*.dll',
        ROOT_DIR + '\\bin\\Release_x64\\*.ax',
        ROOT_DIR + '\\tools\\bin\\regsvrex64.exe',
        ROOT_DIR + '\\tools\\dist\\Microsoft .NET Framework 4 Client Profile.url',
        ROOT_DIR + '\\tools\\dist\\Visual C++ Redistributable for Visual Studio 2012 Update 3.url',
        ROOT_DIR + '\\tools\\dist\\install.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall.bat',
        ROOT_DIR + '\\tools\\dist\\install_regsvr.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall_regsvr.bat',
        ]
    dist.ARCHIVE_COMMAND = BIN_DIR + '\\7zr.exe'
    dist.ARCHIVE_OPTIONS = 'a'

    dist.init()
    dist.make_dist()
    dist.make_archive()
Example #2
0
def dist():
    from sys import stderr
    print >> stderr, '--- dist ---\n'

    from scripts import dist
    dist.TMP_DIR = TMP_DIR + '\\dist'

    dist.BASENAME_DIR = 'SCFF-DirectShow-Filter'
    dist.DIST_DIR = dist.TMP_DIR + '\\' + dist.BASENAME_DIR
    dist.DLLS_32BIT_DIR = dist.DIST_DIR + '\\Win32'
    dist.DLLS_64BIT_DIR = dist.DIST_DIR + '\\x64'

    dist.FILES = [
        ROOT_DIR + '\\README.md',
        ROOT_DIR + '\\LICENSE',
        ROOT_DIR + '\\bin\\Release\\SCFF.GUI.exe',
        ROOT_DIR + '\\bin\\Release\\Microsoft.Windows.Shell.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Common.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Interprocess.dll',
        ROOT_DIR + '\\tools\\bin\\regsvrex32.exe',
        ROOT_DIR + '\\tools\\bin\\regsvrex64.exe',
        ROOT_DIR +
        '\\tools\\dist\\Microsoft .NET Framework 4 Client Profile.url',
        ROOT_DIR +
        '\\tools\\dist\\Visual C++ Redistributable Packages for Visual Studio 2013.url',
        ROOT_DIR + '\\tools\\dist\\install.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall.bat',
        ROOT_DIR + '\\tools\\dist\\install_regsvr.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall_regsvr.bat',
    ]
    dist.DLLS_32BIT = [
        ROOT_DIR + '\\bin\\Release_Win32\\*.dll',
        ROOT_DIR + '\\bin\\Release_Win32\\*.ax',
    ]
    dist.DLLS_64BIT = [
        ROOT_DIR + '\\bin\\Release_x64\\*.dll',
        ROOT_DIR + '\\bin\\Release_x64\\*.ax',
    ]
    dist.ARCHIVE_COMMAND = BIN_DIR + '\\7zr.exe'
    dist.ARCHIVE_OPTIONS = 'a'

    dist.init()
    dist.make_dist()
    dist.make_archive()
Example #3
0
def dist():
    from sys import stderr
    print >>stderr, '--- dist ---\n'
    
    from scripts import dist
    dist.TMP_DIR = TMP_DIR + '\\dist'

    dist.BASENAME_32BIT_DIR = 'SCFF-DirectShow-Filter-x86'
    dist.BASENAME_64BIT_DIR = 'SCFF-DirectShow-Filter-amd64'
    dist.DIST_32BIT_DIR = dist.TMP_DIR + '\\' + dist.BASENAME_32BIT_DIR
    dist.DIST_64BIT_DIR = dist.TMP_DIR + '\\' + dist.BASENAME_64BIT_DIR

    dist.FILES_32BIT = [
        ROOT_DIR + '\\README.md',
        ROOT_DIR + '\\LICENSE',
        ROOT_DIR + '\\dist\\Release\\scff-app.exe',
        ROOT_DIR + '\\dist\\Release-x86\\*.dll',
        ROOT_DIR + '\\dist\\Release-x86\\*.ax',
        ROOT_DIR + '\\tools\\bin\\regsvrex32.exe',
        ROOT_DIR + '\\tools\\dist-files\\Microsoft .NET Framework 4 Client Profile.url',
        ROOT_DIR + '\\tools\\dist-files\\VC2010SP1 Redistributable Package (x86).url',
        ROOT_DIR + '\\tools\\dist-files\\install-x86.bat',
        ROOT_DIR + '\\tools\\dist-files\\uninstall-x86.bat',
        ]
    dist.FILES_64BIT = [
        ROOT_DIR + '\\README.md',
        ROOT_DIR + '\\LICENSE',
        ROOT_DIR + '\\dist\\Release\\scff-app.exe',
        ROOT_DIR + '\\dist\\Release-amd64\\*.dll',
        ROOT_DIR + '\\dist\\Release-amd64\\*.ax',
        ROOT_DIR + '\\tools\\bin\\regsvrex64.exe',
        ROOT_DIR + '\\tools\\dist-files\\Microsoft .NET Framework 4 Client Profile.url',
        ROOT_DIR + '\\tools\\dist-files\\VC2010SP1 Redistributable Package (x64).url',
        ROOT_DIR + '\\tools\\dist-files\\install-amd64.bat',
        ROOT_DIR + '\\tools\\dist-files\\uninstall-amd64.bat',
        ]
        
    dist.ARCHIVE_COMMAND = BIN_DIR + '\\7zr.exe'
    dist.ARCHIVE_OPTIONS = 'a'

    dist.init()
    dist.make_dist()
    dist.make_archive()
Example #4
0
def dist():
    from sys import stderr
    print >>stderr, '--- dist ---\n'

    from scripts import dist
    dist.TMP_DIR = TMP_DIR + '\\dist'

    dist.BASENAME_DIR = 'SCFF-DirectShow-Filter'
    dist.DIST_DIR = dist.TMP_DIR + '\\' + dist.BASENAME_DIR
    dist.DLLS_32BIT_DIR = dist.DIST_DIR + '\\Win32'
    dist.DLLS_64BIT_DIR = dist.DIST_DIR + '\\x64'

    dist.FILES = [
        ROOT_DIR + '\\README.md',
        ROOT_DIR + '\\LICENSE',
        ROOT_DIR + '\\bin\\Release\\SCFF.GUI.exe',
        ROOT_DIR + '\\bin\\Release\\Microsoft.Windows.Shell.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Common.dll',
        ROOT_DIR + '\\bin\\Release\\SCFF.Interprocess.dll',
        ROOT_DIR + '\\tools\\bin\\regsvrex32.exe',
        ROOT_DIR + '\\tools\\bin\\regsvrex64.exe',
        ROOT_DIR + '\\tools\\dist\\Microsoft .NET Framework 4.7.1.url',
        ROOT_DIR + '\\tools\\dist\\Downloads - Visual Studio Official Site.url',
        ROOT_DIR + '\\tools\\dist\\install.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall.bat',
        ROOT_DIR + '\\tools\\dist\\install_regsvr.bat',
        ROOT_DIR + '\\tools\\dist\\uninstall_regsvr.bat',
        ]
    dist.DLLS_32BIT = [
        ROOT_DIR + '\\bin\\Release_Win32\\*.dll',
        ROOT_DIR + '\\bin\\Release_Win32\\*.ax',
        ]
    dist.DLLS_64BIT = [
        ROOT_DIR + '\\bin\\Release_x64\\*.dll',
        ROOT_DIR + '\\bin\\Release_x64\\*.ax',
        ]
    dist.ARCHIVE_COMMAND = BIN_DIR + '\\7zr.exe'
    dist.ARCHIVE_OPTIONS = 'a'

    dist.init()
    dist.make_dist()
    dist.make_archive()
Example #5
0
def dist():
    from sys import stderr

    print >> stderr, "--- dist ---\n"

    from scripts import dist

    dist.TMP_DIR = TMP_DIR + "\\dist"

    dist.BASENAME_DIR = "SCFF-DirectShow-Filter"
    dist.DIST_DIR = dist.TMP_DIR + "\\" + dist.BASENAME_DIR
    dist.DLLS_32BIT_DIR = dist.DIST_DIR + "\\Win32"
    dist.DLLS_64BIT_DIR = dist.DIST_DIR + "\\x64"

    dist.FILES = [
        ROOT_DIR + "\\README.md",
        ROOT_DIR + "\\LICENSE",
        ROOT_DIR + "\\bin\\Release\\SCFF.GUI.exe",
        ROOT_DIR + "\\bin\\Release\\Microsoft.Windows.Shell.dll",
        ROOT_DIR + "\\bin\\Release\\SCFF.Common.dll",
        ROOT_DIR + "\\bin\\Release\\SCFF.Interprocess.dll",
        ROOT_DIR + "\\tools\\bin\\regsvrex32.exe",
        ROOT_DIR + "\\tools\\bin\\regsvrex64.exe",
        ROOT_DIR + "\\tools\\dist\\Microsoft .NET Framework 4 Client Profile.url",
        ROOT_DIR + "\\tools\\dist\\Visual C++ Redistributable Packages for Visual Studio 2013.url",
        ROOT_DIR + "\\tools\\dist\\install.bat",
        ROOT_DIR + "\\tools\\dist\\uninstall.bat",
        ROOT_DIR + "\\tools\\dist\\install_regsvr.bat",
        ROOT_DIR + "\\tools\\dist\\uninstall_regsvr.bat",
    ]
    dist.DLLS_32BIT = [ROOT_DIR + "\\bin\\Release_Win32\\*.dll", ROOT_DIR + "\\bin\\Release_Win32\\*.ax"]
    dist.DLLS_64BIT = [ROOT_DIR + "\\bin\\Release_x64\\*.dll", ROOT_DIR + "\\bin\\Release_x64\\*.ax"]
    dist.ARCHIVE_COMMAND = BIN_DIR + "\\7zr.exe"
    dist.ARCHIVE_OPTIONS = "a"

    dist.init()
    dist.make_dist()
    dist.make_archive()