#!/bin/bash
#
# KDElibs/win32 Build Environment
#

# Copy kde_env_custom.template to kde_env_custom and this it's paths if needed:

source "kde_env_custom"

# Top KDE Directory - target of your compilation

export KDEDIR=f:\\kde

# Generic settings
export KDELIBS=$KDEWIN\\kdelibs
export INCLUDE="$KDEWIN\\include;$KDELIBS;$KDELIBS\\kdecore;$KDELIBS\\kdefx;$KDELIBS\\kdeprint;$KDELIBS\\kdeui;$KDELIBS\\kmdi;$KDELIBS\\dcop;$KDELIBS\\kio;$KDELIBS\\kio\\kio;$KDELIBS\\kio\\kfile;$INCLUDE"

# Version information for binaries
# We're changing this from time to time

export KDE_VER_MAJ=3
export KDE_VER_MIN=3
export KDE_VER_PAT=89
export KDE_VER=$KDE_VER_MAJ$KDE_VER_MIN$KDE_VER_PAT

# Utils

export MAKE="nmake /NOLOGO"
