Subversion Repositories DevTools

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; tabs: 8; indent-width: 4; -*-
2
###############################################################################
3
# Copyright (c) ERG Transit Systems. 1996-2004
4
# 
5
# File:         PLATFORM/win32
6
#
7
# Contents:     WIN 32bit support (Visual C/C++)
8
#
9
# Revision History:
10
#   19/08/99  APY   Created
11
###############################################################################
12
#
13
 
14
Win32Init();
15
 
16
sub Win32Init
17
{
18
    Toolset( '*', 'vcwin32.pl', '--Version=MS.NET2003' );
19
    PlatformDefines( "win32.def" );
20
}
21
 
22
 
23