Commit d1296b32 authored by Sam Hocevar's avatar Sam Hocevar

* ./bootstrap: bootstrap now requires the --config flag. With no arguments

    it simply outputs a usage message.
  * ./src/*: fixed a bunch of (legitimate) warnings under VC++.
  * ./evc/*, ./msvc/*: split the workspaces into three projects (libvlc, vlc
    and plugins -- plugins doesn't build anything yet).
parent 5b2cc57a
...@@ -272,23 +272,28 @@ EXTRA_DIST += \ ...@@ -272,23 +272,28 @@ EXTRA_DIST += \
############################################################################### ###############################################################################
EXTRA_DIST += \ EXTRA_DIST += \
msvc/vlc.dsp \
msvc/vlc.dsw \ msvc/vlc.dsw \
msvc/libvlc.dsp \
msvc/libvlc.dsp.in \
msvc/vlc.dsp \
msvc/vlc.dsp.in \ msvc/vlc.dsp.in \
msvc/vlc.dsp.out \ msvc/vlc.dsp.out \
msvc/plugins.dsp \
msvc/plugins.dsp.in \
msvc/config.h \ msvc/config.h \
msvc/modules_builtin_msvc.h \ msvc/modules_builtin_msvc.h \
evc/vlc.vcp \
evc/vlc.vcw \ evc/vlc.vcw \
evc/libvlc.vcp \
evc/libvlc.vcp.in \
evc/vlc.vcp \
evc/vlc.vcp.in \ evc/vlc.vcp.in \
evc/vlc.vcp.out \ evc/vlc.vcp.out \
evc/plugins.vcp \
evc/plugins.vcp.in \
evc/config.h \ evc/config.h \
evc/modules_builtin_msvc.h \ evc/modules_builtin_evc.h \
$(NULL) $(NULL)
show-vlc-sources: FORCE
@echo X: $(vlc_SOURCES)
show-libvlc-sources: FORCE show-libvlc-sources: FORCE
@echo X: $(SOURCES_libvlc_common) $(SOURCES_libvlc_win32) $(SOURCES_libvlc_dirent) $(SOURCES_libvlc_getopt) $(SOURCES_libvlc_libc) @echo X: $(SOURCES_libvlc_common) $(SOURCES_libvlc_win32) $(SOURCES_libvlc_dirent) $(SOURCES_libvlc_getopt) $(SOURCES_libvlc_libc)
......
#! /bin/sh #! /bin/sh
## bootstrap file for vlc, the VideoLAN Client ## bootstrap file for vlc, the VideoLAN Client
## $Id: bootstrap,v 1.26 2002/11/13 15:28:23 sam Exp $ ## $Id: bootstrap,v 1.27 2002/11/13 20:51:03 sam Exp $
## ##
## Authors: Samuel Hocevar <sam@zoy.org> ## Authors: Samuel Hocevar <sam@zoy.org>
...@@ -11,35 +11,61 @@ ...@@ -11,35 +11,61 @@
LANG=C LANG=C
export LANG export LANG
##
## Give help
##
help()
{
if test "$do_help" = "yes"
then
cat << EOF
recognized flags are:
--config create Makefile and configure scripts (read HACKING)
--update-vc update Microsoft Visual Studio files
--update-po update translation files
EOF
exit 1
fi
}
### ###
### argument check ### argument check
### ###
do_help=yes
do_po=no do_po=no
do_vc=no do_vc=no
while test $# -gt 0; do while test $# -gt 0; do
case "$1" in case "$1" in
--config)
do_help=no
;;
--update-vc) --update-vc)
do_help=no
do_vc=yes do_vc=yes
;; ;;
--update-po) --update-po)
do_help=no
do_po=yes do_po=yes
;; ;;
*) *)
echo "$0: unknown option $1" echo "$0: unknown option $1"
echo "recognized flags are --update-vc and --update-po" do_help=yes
exit 1 help
;; ;;
esac esac
shift shift
done done
##
## Give help if needed
##
help
## ##
## Update the MSVC project files ## Update the MSVC project files
## ##
if test "$do_vc" = "no" if test "$do_vc" = "yes"
then then
echo "not updating MSVC or eVC project file. use --update-vc to force doing it."
else
if test ! -f Makefile if test ! -f Makefile
then then
echo "no Makefile found, did you run ./configure?" echo "no Makefile found, did you run ./configure?"
...@@ -54,7 +80,8 @@ else ...@@ -54,7 +80,8 @@ else
LIBVLC_HEADERS=`make show-libvlc-headers | grep '^X: ' | cut -b3-` LIBVLC_HEADERS=`make show-libvlc-headers | grep '^X: ' | cut -b3-`
LIBVLC_PKG_HEADERS=`make show-libvlc-pkg-headers | grep '^X: ' | cut -b3-` LIBVLC_PKG_HEADERS=`make show-libvlc-pkg-headers | grep '^X: ' | cut -b3-`
for target in evc/vlc.vcp msvc/vlc.dsp # libvlc files
for target in evc/libvlc.vcp msvc/libvlc.dsp
do do
rm -f ${target} rm -f ${target}
# Top of the project file # Top of the project file
...@@ -63,23 +90,6 @@ else ...@@ -63,23 +90,6 @@ else
cat >> ${target} << EOF cat >> ${target} << EOF
# Begin Group "Source Files"${M} # Begin Group "Source Files"${M}
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M} # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M}
# Begin Group "vlc"${M}
# Begin Source File${M}
EOF
if test "${target}" = "evc/vlc.vcp"
then
cat >> ${target} << EOF
SOURCE="..\\evc\\vlc.c"${M}
EOF
else
cat >> ${target} << EOF
SOURCE="..\\src\\vlc.c"${M}
EOF
fi
cat >> ${target} << EOF
# End Source File${M}
# End Group${M}
# Begin Group "libvlc"${M}
EOF EOF
for file in `for i in ${LIBVLC_SOURCES} ; do echo $i ; done | grep -v "/.*/"` for file in `for i in ${LIBVLC_SOURCES} ; do echo $i ; done | grep -v "/.*/"`
do do
...@@ -97,42 +107,42 @@ EOF ...@@ -97,42 +107,42 @@ EOF
EOF EOF
for file in `for i in ${LIBVLC_SOURCES} ; do echo $i ; done | grep "/${subdir}/"` for file in `for i in ${LIBVLC_SOURCES} ; do echo $i ; done | grep "/${subdir}/"`
do do
if test "${target}" = "evc/vlc.vcp" if test "${target}" = "evc/libvlc.vcp"
then then
cat >> ${target} << EOF cat >> ${target} << EOF
# Begin Source File${M} # Begin Source File${M}
SOURCE="..\\`echo $file | sed -e 's%/%\\\\%g'`"${M} SOURCE="..\\`echo $file | sed -e 's%/%\\\\%g'`"${M}
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\\"plugins\\" /D DATA_PATH=\\"share\\"${M} # ADD CPP /D "__VLC__" /D PLUGIN_PATH=\\"plugins\\" /D DATA_PATH=\\"share\\"${M}
!IF "\$(CFG)" == "vlc - Win32 (WCE MIPS) Release"${M} !IF "\$(CFG)" == "vlc - Win32 (WCE MIPS) Release"${M}
# PROP Intermediate_Dir "Release\\${subdir}"${M} # PROP Intermediate_Dir "MIPSRel\\${subdir}"${M}
# PROP Output_Dir "Release\\${subdir}"${M} # PROP Output_Dir "MIPSRel\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"${M}
# PROP Intermediate_Dir "Debug\\${subdir}"${M} # PROP Intermediate_Dir "MIPSDbg\\${subdir}"${M}
# PROP Output_Dir "Debug\\${subdir}"${M} # PROP Output_Dir "MIPSDbg\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH4) Release"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH4) Release"${M}
# PROP Intermediate_Dir "Release\\${subdir}"${M} # PROP Intermediate_Dir "SH4Rel\\${subdir}"${M}
# PROP Output_Dir "Release\\${subdir}"${M} # PROP Output_Dir "SH4Rel\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH4) Debug"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH4) Debug"${M}
# PROP Intermediate_Dir "Debug\\${subdir}"${M} # PROP Intermediate_Dir "SH4Dbg\\${subdir}"${M}
# PROP Output_Dir "Debug\\${subdir}"${M} # PROP Output_Dir "SH4Dbg\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH3) Release"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH3) Release"${M}
# PROP Intermediate_Dir "Release\\${subdir}"${M} # PROP Intermediate_Dir "SH3Rel\\${subdir}"${M}
# PROP Output_Dir "Release\\${subdir}"${M} # PROP Output_Dir "SH3Rel\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH3) Debug"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE SH3) Debug"${M}
# PROP Intermediate_Dir "Debug\\${subdir}"${M} # PROP Intermediate_Dir "SH3Dbg\\${subdir}"${M}
# PROP Output_Dir "Debug\\${subdir}"${M} # PROP Output_Dir "SH3Dbg\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE ARM) Release"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE ARM) Release"${M}
# PROP Intermediate_Dir "Release\\${subdir}"${M} # PROP Intermediate_Dir "ARMRel\\${subdir}"${M}
# PROP Output_Dir "Release\\${subdir}"${M} # PROP Output_Dir "ARMRel\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE ARM) Debug"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE ARM) Debug"${M}
# PROP Intermediate_Dir "Debug\\${subdir}"${M} # PROP Intermediate_Dir "ARMDbg\\${subdir}"${M}
# PROP Output_Dir "Debug\\${subdir}"${M} # PROP Output_Dir "ARMDbg\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE x86em) Release"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE x86em) Release"${M}
# PROP Intermediate_Dir "Release\\${subdir}"${M} # PROP Intermediate_Dir "X86EMRel\\${subdir}"${M}
# PROP Output_Dir "Release\\${subdir}"${M} # PROP Output_Dir "X86EMRel\\${subdir}"${M}
!ELSEIF "\$(CFG)" == "vlc - Win32 (WCE x86em) Debug"${M} !ELSEIF "\$(CFG)" == "vlc - Win32 (WCE x86em) Debug"${M}
# PROP Intermediate_Dir "Debug\\${subdir}"${M} # PROP Intermediate_Dir "X86EMDbg\\${subdir}"${M}
# PROP Output_Dir "Debug\\${subdir}"${M} # PROP Output_Dir "X86EMDbg\\${subdir}"${M}
!ENDIF${M} !ENDIF${M}
# End Source File${M} # End Source File${M}
EOF EOF
...@@ -158,10 +168,7 @@ EOF ...@@ -158,10 +168,7 @@ EOF
done done
cat >> ${target} << EOF cat >> ${target} << EOF
# End Group${M} # End Group${M}
# End Group${M}
EOF EOF
# The modules
echo 'no modules yet'
# The headers # The headers
cat >> ${target} << EOF cat >> ${target} << EOF
# Begin Group "Header Files"${M} # Begin Group "Header Files"${M}
...@@ -189,6 +196,58 @@ EOF ...@@ -189,6 +196,58 @@ EOF
cat >> ${target} << EOF cat >> ${target} << EOF
# End Group${M} # End Group${M}
# End Group${M} # End Group${M}
# End Target${M}
# End Project${M}
EOF
done
# plugins files
for target in evc/plugins.vcp msvc/plugins.dsp
do
rm -f ${target}
# Top of the project file
cat ${target}.in > ${target}
# The source files
cat >> ${target} << EOF
# Begin Group "Source Files"${M}
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M}
# End Group${M}
EOF
# The headers
cat >> ${target} << EOF
# Begin Group "Header Files"${M}
# PROP Default_Filter "h;hpp;hxx;hm;inl"${M}
# End Group${M}
# End Target${M}
# End Project${M}
EOF
done
# vlc files
for target in evc/vlc.vcp msvc/vlc.dsp
do
rm -f ${target}
# Top of the project file
cat ${target}.in > ${target}
# The source files
cat >> ${target} << EOF
# Begin Group "Source Files"${M}
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"${M}
# Begin Source File${M}
EOF
if test "${target}" = "evc/vlc.vcp"
then
cat >> ${target} << EOF
SOURCE="..\\evc\\vlc.c"${M}
EOF
else
cat >> ${target} << EOF
SOURCE="..\\src\\vlc.c"${M}
EOF
fi
cat >> ${target} << EOF
# End Source File${M}
# End Group${M}
EOF EOF
# Bottom of the project file - handles resource files too # Bottom of the project file - handles resource files too
cat ${target}.out >> ${target} cat ${target}.out >> ${target}
...@@ -200,10 +259,8 @@ fi ...@@ -200,10 +259,8 @@ fi
## ##
## Update the potfiles because no one ever does it ## Update the potfiles because no one ever does it
## ##
if test "$do_po" = "no" if test "$do_po" = "yes"
then then
echo "not updating potfiles. use --update-po to force doing it."
else
cd po cd po
make update-po 2>&1 | grep '^[^:]*:$' | cut -f1 -d: | tr '\n' ' ' | sed 's/ $//' make update-po 2>&1 | grep '^[^:]*:$' | cut -f1 -d: | tr '\n' ' ' | sed 's/ $//'
cd .. cd ..
......
...@@ -367,3 +367,9 @@ the Boston strangler is to the woman home alone. ...@@ -367,3 +367,9 @@ the Boston strangler is to the woman home alone.
-- #videolan -- #videolan
% %
<sam> dudes, you'll hate me again: bootstrap will now need an argument :)
<Dnumgis> sam: hate you already
<gibalou> sam: don't worry sam, we already hated you ;)
-- #videolan
%
# Microsoft eMbedded Visual Tools Project File - Name="libvlc" - Package Owner=<4>
# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
# ** DO NOT EDIT **
# TARGTYPE "Win32 (WCE SH4) Static Library" 0x8604
# TARGTYPE "Win32 (WCE MIPS) Static Library" 0x8204
# TARGTYPE "Win32 (WCE x86em) Static Library" 0x7f04
# TARGTYPE "Win32 (WCE ARM) Static Library" 0x8504
# TARGTYPE "Win32 (WCE SH3) Static Library" 0x8104
CFG=libvlc - Win32 (WCE MIPS) Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "libvlc.vcn".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "libvlc.vcn" CFG="libvlc - Win32 (WCE MIPS) Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "libvlc - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Static Library")
!MESSAGE "libvlc - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Static Library")
!MESSAGE "libvlc - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Static Library")
!MESSAGE "libvlc - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Static Library")
!MESSAGE "libvlc - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Static Library")
!MESSAGE "libvlc - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Static Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
# PROP ATL_Project 2
!IF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "MIPSRel"
# PROP BASE Intermediate_Dir "MIPSRel"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "MIPSRel"
# PROP Intermediate_Dir "MIPSRel"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "MIPSDbg"
# PROP BASE Intermediate_Dir "MIPSDbg"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "MIPSDbg"
# PROP Intermediate_Dir "MIPSDbg"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH4Rel"
# PROP BASE Intermediate_Dir "SH4Rel"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH4Rel"
# PROP Intermediate_Dir "SH4Rel"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH4Dbg"
# PROP BASE Intermediate_Dir "SH4Dbg"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH4Dbg"
# PROP Intermediate_Dir "SH4Dbg"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH3Rel"
# PROP BASE Intermediate_Dir "SH3Rel"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH3Rel"
# PROP Intermediate_Dir "SH3Rel"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH3Dbg"
# PROP BASE Intermediate_Dir "SH3Dbg"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH3Dbg"
# PROP Intermediate_Dir "SH3Dbg"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "ARMRel"
# PROP BASE Intermediate_Dir "ARMRel"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "ARMRel"
# PROP Intermediate_Dir "ARMRel"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "ARMDbg"
# PROP BASE Intermediate_Dir "ARMDbg"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "ARMDbg"
# PROP Intermediate_Dir "ARMDbg"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "X86EMRel"
# PROP BASE Intermediate_Dir "X86EMRel"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "X86EMRel"
# PROP Intermediate_Dir "X86EMRel"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "X86EMDbg"
# PROP BASE Intermediate_Dir "X86EMDbg"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "X86EMDbg"
# PROP Intermediate_Dir "X86EMDbg"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ENDIF
# Begin Target
# Name "libvlc - Win32 (WCE MIPS) Release"
# Name "libvlc - Win32 (WCE MIPS) Debug"
# Name "libvlc - Win32 (WCE SH4) Release"
# Name "libvlc - Win32 (WCE SH4) Debug"
# Name "libvlc - Win32 (WCE SH3) Release"
# Name "libvlc - Win32 (WCE SH3) Debug"
# Name "libvlc - Win32 (WCE ARM) Release"
# Name "libvlc - Win32 (WCE ARM) Debug"
# Name "libvlc - Win32 (WCE x86em) Release"
# Name "libvlc - Win32 (WCE x86em) Debug"
# Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
SOURCE="..\src\libvlc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Source File
SOURCE="..\src\libvlc.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Group "audio_output"
# Begin Source File
SOURCE="..\src\audio_output\common.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\filters.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\mixer.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\audio_output"
# PROP Output_Dir "MIPSRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\audio_output"
# PROP Output_Dir "MIPSDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\audio_output"
# PROP Output_Dir "SH4Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\audio_output"
# PROP Output_Dir "SH4Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\audio_output"
# PROP Output_Dir "SH3Rel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\audio_output"
# PROP Output_Dir "SH3Dbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\audio_output"
# PROP Output_Dir "ARMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\audio_output"
# PROP Output_Dir "ARMDbg\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\audio_output"
# PROP Output_Dir "X86EMRel\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\audio_output"
# PROP Output_Dir "X86EMDbg\audio_output"
!ENDIF
# End Source File
# End Group
# Begin Group "extras"
# Begin Source File
SOURCE="..\src\extras\dirent.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\extras"
# PROP Output_Dir "MIPSRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\extras"
# PROP Output_Dir "MIPSDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\extras"
# PROP Output_Dir "SH4Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\extras"
# PROP Output_Dir "SH4Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\extras"
# PROP Output_Dir "SH3Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\extras"
# PROP Output_Dir "SH3Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\extras"
# PROP Output_Dir "ARMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\extras"
# PROP Output_Dir "ARMDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\extras"
# PROP Output_Dir "X86EMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\extras"
# PROP Output_Dir "X86EMDbg\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\dirent.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\extras"
# PROP Output_Dir "MIPSRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\extras"
# PROP Output_Dir "MIPSDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\extras"
# PROP Output_Dir "SH4Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\extras"
# PROP Output_Dir "SH4Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\extras"
# PROP Output_Dir "SH3Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\extras"
# PROP Output_Dir "SH3Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\extras"
# PROP Output_Dir "ARMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\extras"
# PROP Output_Dir "ARMDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\extras"
# PROP Output_Dir "X86EMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\extras"
# PROP Output_Dir "X86EMDbg\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\extras"
# PROP Output_Dir "MIPSRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\extras"
# PROP Output_Dir "MIPSDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\extras"
# PROP Output_Dir "SH4Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\extras"
# PROP Output_Dir "SH4Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\extras"
# PROP Output_Dir "SH3Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\extras"
# PROP Output_Dir "SH3Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\extras"
# PROP Output_Dir "ARMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\extras"
# PROP Output_Dir "ARMDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\extras"
# PROP Output_Dir "X86EMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\extras"
# PROP Output_Dir "X86EMDbg\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\extras"
# PROP Output_Dir "MIPSRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\extras"
# PROP Output_Dir "MIPSDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\extras"
# PROP Output_Dir "SH4Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\extras"
# PROP Output_Dir "SH4Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\extras"
# PROP Output_Dir "SH3Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\extras"
# PROP Output_Dir "SH3Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\extras"
# PROP Output_Dir "ARMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\extras"
# PROP Output_Dir "ARMDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\extras"
# PROP Output_Dir "X86EMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\extras"
# PROP Output_Dir "X86EMDbg\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt1.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\extras"
# PROP Output_Dir "MIPSRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\extras"
# PROP Output_Dir "MIPSDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\extras"
# PROP Output_Dir "SH4Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\extras"
# PROP Output_Dir "SH4Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\extras"
# PROP Output_Dir "SH3Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\extras"
# PROP Output_Dir "SH3Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\extras"
# PROP Output_Dir "ARMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\extras"
# PROP Output_Dir "ARMDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\extras"
# PROP Output_Dir "X86EMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\extras"
# PROP Output_Dir "X86EMDbg\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\libc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\extras"
# PROP Output_Dir "MIPSRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\extras"
# PROP Output_Dir "MIPSDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\extras"
# PROP Output_Dir "SH4Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\extras"
# PROP Output_Dir "SH4Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\extras"
# PROP Output_Dir "SH3Rel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\extras"
# PROP Output_Dir "SH3Dbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\extras"
# PROP Output_Dir "ARMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\extras"
# PROP Output_Dir "ARMDbg\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\extras"
# PROP Output_Dir "X86EMRel\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\extras"
# PROP Output_Dir "X86EMDbg\extras"
!ENDIF
# End Source File
# End Group
# Begin Group "input"
# Begin Source File
SOURCE="..\src\input\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-plugins.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_programs.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_clock.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_info.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\input"
# PROP Output_Dir "MIPSRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\input"
# PROP Output_Dir "MIPSDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\input"
# PROP Output_Dir "SH4Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\input"
# PROP Output_Dir "SH4Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\input"
# PROP Output_Dir "SH3Rel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\input"
# PROP Output_Dir "SH3Dbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\input"
# PROP Output_Dir "ARMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\input"
# PROP Output_Dir "ARMDbg\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\input"
# PROP Output_Dir "X86EMRel\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\input"
# PROP Output_Dir "X86EMDbg\input"
!ENDIF
# End Source File
# End Group
# Begin Group "interface"
# Begin Source File
SOURCE="..\src\interface\interface.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\interface"
# PROP Output_Dir "MIPSRel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\interface"
# PROP Output_Dir "MIPSDbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\interface"
# PROP Output_Dir "SH4Rel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\interface"
# PROP Output_Dir "SH4Dbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\interface"
# PROP Output_Dir "SH3Rel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\interface"
# PROP Output_Dir "SH3Dbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\interface"
# PROP Output_Dir "ARMRel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\interface"
# PROP Output_Dir "ARMDbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\interface"
# PROP Output_Dir "X86EMRel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\interface"
# PROP Output_Dir "X86EMDbg\interface"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\interface\intf_eject.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\interface"
# PROP Output_Dir "MIPSRel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\interface"
# PROP Output_Dir "MIPSDbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\interface"
# PROP Output_Dir "SH4Rel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\interface"
# PROP Output_Dir "SH4Dbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\interface"
# PROP Output_Dir "SH3Rel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\interface"
# PROP Output_Dir "SH3Dbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\interface"
# PROP Output_Dir "ARMRel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\interface"
# PROP Output_Dir "ARMDbg\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\interface"
# PROP Output_Dir "X86EMRel\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\interface"
# PROP Output_Dir "X86EMDbg\interface"
!ENDIF
# End Source File
# End Group
# Begin Group "misc"
# Begin Source File
SOURCE="..\src\misc\mtime.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\modules.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\threads.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\cpu.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\configuration.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\netutils.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso_lang.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso-639_def.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\messages.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\objects.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\variables.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\error.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\win32_specific.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\misc"
# PROP Output_Dir "MIPSRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\misc"
# PROP Output_Dir "MIPSDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\misc"
# PROP Output_Dir "SH4Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\misc"
# PROP Output_Dir "SH4Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\misc"
# PROP Output_Dir "SH3Rel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\misc"
# PROP Output_Dir "SH3Dbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\misc"
# PROP Output_Dir "ARMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\misc"
# PROP Output_Dir "ARMDbg\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\misc"
# PROP Output_Dir "X86EMRel\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\misc"
# PROP Output_Dir "X86EMDbg\misc"
!ENDIF
# End Source File
# End Group
# Begin Group "playlist"
# Begin Source File
SOURCE="..\src\playlist\playlist.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\playlist"
# PROP Output_Dir "MIPSRel\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\playlist"
# PROP Output_Dir "MIPSDbg\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\playlist"
# PROP Output_Dir "SH4Rel\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\playlist"
# PROP Output_Dir "SH4Dbg\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\playlist"
# PROP Output_Dir "SH3Rel\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\playlist"
# PROP Output_Dir "SH3Dbg\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\playlist"
# PROP Output_Dir "ARMRel\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\playlist"
# PROP Output_Dir "ARMDbg\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\playlist"
# PROP Output_Dir "X86EMRel\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\playlist"
# PROP Output_Dir "X86EMDbg\playlist"
!ENDIF
# End Source File
# End Group
# Begin Group "stream_output"
# Begin Source File
SOURCE="..\src\stream_output\stream_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\stream_output"
# PROP Output_Dir "MIPSRel\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\stream_output"
# PROP Output_Dir "MIPSDbg\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\stream_output"
# PROP Output_Dir "SH4Rel\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\stream_output"
# PROP Output_Dir "SH4Dbg\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\stream_output"
# PROP Output_Dir "SH3Rel\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\stream_output"
# PROP Output_Dir "SH3Dbg\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\stream_output"
# PROP Output_Dir "ARMRel\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\stream_output"
# PROP Output_Dir "ARMDbg\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\stream_output"
# PROP Output_Dir "X86EMRel\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\stream_output"
# PROP Output_Dir "X86EMDbg\stream_output"
!ENDIF
# End Source File
# End Group
# Begin Group "video_output"
# Begin Source File
SOURCE="..\src\video_output\video_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\video_output"
# PROP Output_Dir "MIPSRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\video_output"
# PROP Output_Dir "MIPSDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\video_output"
# PROP Output_Dir "SH4Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\video_output"
# PROP Output_Dir "SH4Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\video_output"
# PROP Output_Dir "SH3Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\video_output"
# PROP Output_Dir "SH3Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\video_output"
# PROP Output_Dir "ARMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\video_output"
# PROP Output_Dir "ARMDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\video_output"
# PROP Output_Dir "X86EMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\video_output"
# PROP Output_Dir "X86EMDbg\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\video_output"
# PROP Output_Dir "MIPSRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\video_output"
# PROP Output_Dir "MIPSDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\video_output"
# PROP Output_Dir "SH4Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\video_output"
# PROP Output_Dir "SH4Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\video_output"
# PROP Output_Dir "SH3Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\video_output"
# PROP Output_Dir "SH3Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\video_output"
# PROP Output_Dir "ARMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\video_output"
# PROP Output_Dir "ARMDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\video_output"
# PROP Output_Dir "X86EMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\video_output"
# PROP Output_Dir "X86EMDbg\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\video_output"
# PROP Output_Dir "MIPSRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\video_output"
# PROP Output_Dir "MIPSDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\video_output"
# PROP Output_Dir "SH4Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\video_output"
# PROP Output_Dir "SH4Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\video_output"
# PROP Output_Dir "SH3Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\video_output"
# PROP Output_Dir "SH3Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\video_output"
# PROP Output_Dir "ARMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\video_output"
# PROP Output_Dir "ARMDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\video_output"
# PROP Output_Dir "X86EMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\video_output"
# PROP Output_Dir "X86EMDbg\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\video_output"
# PROP Output_Dir "MIPSRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\video_output"
# PROP Output_Dir "MIPSDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\video_output"
# PROP Output_Dir "SH4Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\video_output"
# PROP Output_Dir "SH4Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\video_output"
# PROP Output_Dir "SH3Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\video_output"
# PROP Output_Dir "SH3Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\video_output"
# PROP Output_Dir "ARMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\video_output"
# PROP Output_Dir "ARMDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\video_output"
# PROP Output_Dir "X86EMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\video_output"
# PROP Output_Dir "X86EMDbg\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\video_output"
# PROP Output_Dir "MIPSRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\video_output"
# PROP Output_Dir "MIPSDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\video_output"
# PROP Output_Dir "SH4Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\video_output"
# PROP Output_Dir "SH4Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\video_output"
# PROP Output_Dir "SH3Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\video_output"
# PROP Output_Dir "SH3Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\video_output"
# PROP Output_Dir "ARMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\video_output"
# PROP Output_Dir "ARMDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\video_output"
# PROP Output_Dir "X86EMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\video_output"
# PROP Output_Dir "X86EMDbg\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_subpictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "MIPSRel\video_output"
# PROP Output_Dir "MIPSRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "MIPSDbg\video_output"
# PROP Output_Dir "MIPSDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "SH4Rel\video_output"
# PROP Output_Dir "SH4Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "SH4Dbg\video_output"
# PROP Output_Dir "SH4Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "SH3Rel\video_output"
# PROP Output_Dir "SH3Rel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "SH3Dbg\video_output"
# PROP Output_Dir "SH3Dbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "ARMRel\video_output"
# PROP Output_Dir "ARMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "ARMDbg\video_output"
# PROP Output_Dir "ARMDbg\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "X86EMRel\video_output"
# PROP Output_Dir "X86EMRel\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "X86EMDbg\video_output"
# PROP Output_Dir "X86EMDbg\video_output"
!ENDIF
# End Source File
# End Group
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE="..\include\aout_internal.h"
# End Source File
# Begin Source File
SOURCE="..\include\audio_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\beos_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\configuration.h"
# End Source File
# Begin Source File
SOURCE="..\include\darwin_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\codecs.h"
# End Source File
# Begin Source File
SOURCE="..\include\error.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-dec.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-intf.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-plugins.h"
# End Source File
# Begin Source File
SOURCE="..\include\interface.h"
# End Source File
# Begin Source File
SOURCE="..\include\intf_eject.h"
# End Source File
# Begin Source File
SOURCE="..\include\iso_lang.h"
# End Source File
# Begin Source File
SOURCE="..\include\main.h"
# End Source File
# Begin Source File
SOURCE="..\include\mmx.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules_inner.h"
# End Source File
# Begin Source File
SOURCE="..\include\mtime.h"
# End Source File
# Begin Source File
SOURCE="..\include\netutils.h"
# End Source File
# Begin Source File
SOURCE="..\include\network.h"
# End Source File
# Begin Source File
SOURCE="..\include\os_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_control.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\variables.h"
# End Source File
# Begin Source File
SOURCE="..\include\video.h"
# End Source File
# Begin Source File
SOURCE="..\include\video_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_common.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_config.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_cpu.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_messages.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_objects.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_playlist.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads_funcs.h"
# End Source File
# Begin Source File
SOURCE="..\include\win32_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_symbols.h"
# End Source File
# Begin Group "vlc"
# Begin Source File
SOURCE="..\include\vlc\vlc.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\aout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\vout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\sout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\decoder.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\input.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\intf.h"
# End Source File
# End Group
# End Group
# End Target
# End Project
# Microsoft eMbedded Visual Tools Project File - Name="libvlc" - Package Owner=<4>
# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
# ** DO NOT EDIT **
# TARGTYPE "Win32 (WCE SH4) Static Library" 0x8604
# TARGTYPE "Win32 (WCE MIPS) Static Library" 0x8204
# TARGTYPE "Win32 (WCE x86em) Static Library" 0x7f04
# TARGTYPE "Win32 (WCE ARM) Static Library" 0x8504
# TARGTYPE "Win32 (WCE SH3) Static Library" 0x8104
CFG=libvlc - Win32 (WCE MIPS) Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "libvlc.vcn".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "libvlc.vcn" CFG="libvlc - Win32 (WCE MIPS) Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "libvlc - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Static Library")
!MESSAGE "libvlc - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Static Library")
!MESSAGE "libvlc - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Static Library")
!MESSAGE "libvlc - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Static Library")
!MESSAGE "libvlc - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Static Library")
!MESSAGE "libvlc - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Static Library")
!MESSAGE "libvlc - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Static Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
# PROP ATL_Project 2
!IF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "MIPSRel"
# PROP BASE Intermediate_Dir "MIPSRel"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "MIPSRel"
# PROP Intermediate_Dir "MIPSRel"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE MIPS) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "MIPSDbg"
# PROP BASE Intermediate_Dir "MIPSDbg"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "MIPSDbg"
# PROP Intermediate_Dir "MIPSDbg"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH4Rel"
# PROP BASE Intermediate_Dir "SH4Rel"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH4Rel"
# PROP Intermediate_Dir "SH4Rel"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Qsh4 /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH4) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH4Dbg"
# PROP BASE Intermediate_Dir "SH4Dbg"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH4Dbg"
# PROP Intermediate_Dir "SH4Dbg"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Qsh4 /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH3Rel"
# PROP BASE Intermediate_Dir "SH3Rel"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH3Rel"
# PROP Intermediate_Dir "SH3Rel"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE SH3) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH3Dbg"
# PROP BASE Intermediate_Dir "SH3Dbg"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH3Dbg"
# PROP Intermediate_Dir "SH3Dbg"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "ARMRel"
# PROP BASE Intermediate_Dir "ARMRel"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "ARMRel"
# PROP Intermediate_Dir "ARMRel"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /Oxs /M$(CECrtMT) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE ARM) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "ARMDbg"
# PROP BASE Intermediate_Dir "ARMDbg"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "ARMDbg"
# PROP Intermediate_Dir "ARMDbg"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "X86EMRel"
# PROP BASE Intermediate_Dir "X86EMRel"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "X86EMRel"
# PROP Intermediate_Dir "X86EMRel"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Oxs /Gz /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 (WCE x86em) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "X86EMDbg"
# PROP BASE Intermediate_Dir "X86EMDbg"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "X86EMDbg"
# PROP Intermediate_Dir "X86EMDbg"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gz /c
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
!ENDIF
# Begin Target
# Name "libvlc - Win32 (WCE MIPS) Release"
# Name "libvlc - Win32 (WCE MIPS) Debug"
# Name "libvlc - Win32 (WCE SH4) Release"
# Name "libvlc - Win32 (WCE SH4) Debug"
# Name "libvlc - Win32 (WCE SH3) Release"
# Name "libvlc - Win32 (WCE SH3) Debug"
# Name "libvlc - Win32 (WCE ARM) Release"
# Name "libvlc - Win32 (WCE ARM) Debug"
# Name "libvlc - Win32 (WCE x86em) Release"
# Name "libvlc - Win32 (WCE x86em) Debug"
# Microsoft eMbedded Visual Tools Project File - Name="plugins" - Package Owner=<4>
# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
# ** DO NOT EDIT **
# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
# TARGTYPE "Win32 (WCE x86em) Application" 0x7f01
# TARGTYPE "Win32 (WCE SH3) Application" 0x8101
# TARGTYPE "Win32 (WCE SH4) Application" 0x8601
# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201
CFG=plugins - Win32 (WCE MIPS) Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "plugins.vcn".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "plugins.vcn" CFG="plugins - Win32 (WCE MIPS) Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "plugins - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Application")
!MESSAGE "plugins - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application")
!MESSAGE "plugins - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Application")
!MESSAGE "plugins - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Application")
!MESSAGE "plugins - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Application")
!MESSAGE "plugins - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application")
!MESSAGE "plugins - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
!MESSAGE "plugins - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
!MESSAGE "plugins - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Application")
!MESSAGE "plugins - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
# PROP ATL_Project 2
!IF "$(CFG)" == "plugins - Win32 (WCE MIPS) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "MIPSRel"
# PROP BASE Intermediate_Dir "MIPSRel"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "MIPSRel"
# PROP Intermediate_Dir "MIPSRel"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE MIPS) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "MIPSDbg"
# PROP BASE Intermediate_Dir "MIPSDbg"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "MIPSDbg"
# PROP Intermediate_Dir "MIPSDbg"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH4Rel"
# PROP BASE Intermediate_Dir "SH4Rel"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH4Rel"
# PROP Intermediate_Dir "SH4Rel"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Qsh4 /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Qsh4 /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH4Dbg"
# PROP BASE Intermediate_Dir "SH4Dbg"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH4Dbg"
# PROP Intermediate_Dir "SH4Dbg"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /Qsh4 /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Qsh4 /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH3Rel"
# PROP BASE Intermediate_Dir "SH3Rel"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH3Rel"
# PROP Intermediate_Dir "SH3Rel"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH3Dbg"
# PROP BASE Intermediate_Dir "SH3Dbg"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH3Dbg"
# PROP Intermediate_Dir "SH3Dbg"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "ARMRel"
# PROP BASE Intermediate_Dir "ARMRel"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "ARMRel"
# PROP Intermediate_Dir "ARMRel"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "ARMDbg"
# PROP BASE Intermediate_Dir "ARMDbg"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "ARMDbg"
# PROP Intermediate_Dir "ARMDbg"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "X86EMRel"
# PROP BASE Intermediate_Dir "X86EMRel"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "X86EMRel"
# PROP Intermediate_Dir "X86EMRel"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Yu"stdafx.h" /Gz /Oxs /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Gz /Oxs /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "X86EMDbg"
# PROP BASE Intermediate_Dir "X86EMDbg"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "X86EMDbg"
# PROP Intermediate_Dir "X86EMDbg"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Yu"stdafx.h" /Gz /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Gz /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
!ENDIF
# Begin Target
# Name "plugins - Win32 (WCE MIPS) Release"
# Name "plugins - Win32 (WCE MIPS) Debug"
# Name "plugins - Win32 (WCE SH4) Release"
# Name "plugins - Win32 (WCE SH4) Debug"
# Name "plugins - Win32 (WCE SH3) Release"
# Name "plugins - Win32 (WCE SH3) Debug"
# Name "plugins - Win32 (WCE ARM) Release"
# Name "plugins - Win32 (WCE ARM) Debug"
# Name "plugins - Win32 (WCE x86em) Release"
# Name "plugins - Win32 (WCE x86em) Debug"
# Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# End Group
# End Target
# End Project
# Microsoft eMbedded Visual Tools Project File - Name="plugins" - Package Owner=<4>
# Microsoft eMbedded Visual Tools Generated Build File, Format Version 6.02
# ** DO NOT EDIT **
# TARGTYPE "Win32 (WCE ARM) Application" 0x8501
# TARGTYPE "Win32 (WCE x86em) Application" 0x7f01
# TARGTYPE "Win32 (WCE SH3) Application" 0x8101
# TARGTYPE "Win32 (WCE SH4) Application" 0x8601
# TARGTYPE "Win32 (WCE MIPS) Application" 0x8201
CFG=plugins - Win32 (WCE MIPS) Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "plugins.vcn".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "plugins.vcn" CFG="plugins - Win32 (WCE MIPS) Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "plugins - Win32 (WCE MIPS) Release" (based on "Win32 (WCE MIPS) Application")
!MESSAGE "plugins - Win32 (WCE MIPS) Debug" (based on "Win32 (WCE MIPS) Application")
!MESSAGE "plugins - Win32 (WCE SH4) Release" (based on "Win32 (WCE SH4) Application")
!MESSAGE "plugins - Win32 (WCE SH4) Debug" (based on "Win32 (WCE SH4) Application")
!MESSAGE "plugins - Win32 (WCE SH3) Release" (based on "Win32 (WCE SH3) Application")
!MESSAGE "plugins - Win32 (WCE SH3) Debug" (based on "Win32 (WCE SH3) Application")
!MESSAGE "plugins - Win32 (WCE ARM) Release" (based on "Win32 (WCE ARM) Application")
!MESSAGE "plugins - Win32 (WCE ARM) Debug" (based on "Win32 (WCE ARM) Application")
!MESSAGE "plugins - Win32 (WCE x86em) Release" (based on "Win32 (WCE x86em) Application")
!MESSAGE "plugins - Win32 (WCE x86em) Debug" (based on "Win32 (WCE x86em) Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
# PROP ATL_Project 2
!IF "$(CFG)" == "plugins - Win32 (WCE MIPS) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "MIPSRel"
# PROP BASE Intermediate_Dir "MIPSRel"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "MIPSRel"
# PROP Intermediate_Dir "MIPSRel"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE MIPS) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "MIPSDbg"
# PROP BASE Intermediate_Dir "MIPSDbg"
# PROP BASE CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "MIPSDbg"
# PROP Intermediate_Dir "MIPSDbg"
# PROP CPU_ID "{D6519010-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "MIPS" /d "_MIPS_" /r
CPP=clmips.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "MIPS" /D "_MIPS_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:MIPS
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH4Rel"
# PROP BASE Intermediate_Dir "SH4Rel"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH4Rel"
# PROP Intermediate_Dir "SH4Rel"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "NDEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Qsh4 /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Qsh4 /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH4) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH4Dbg"
# PROP BASE Intermediate_Dir "SH4Dbg"
# PROP BASE CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH4Dbg"
# PROP Intermediate_Dir "SH4Dbg"
# PROP CPU_ID "{D6519021-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "DEBUG" /d "UNICODE" /d "_UNICODE" /d "$(CePlatform)" /d "SHx" /d "SH4" /d "_SH4_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /Qsh4 /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH4" /D "_SH4_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Qsh4 /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH4
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "SH3Rel"
# PROP BASE Intermediate_Dir "SH3Rel"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "SH3Rel"
# PROP Intermediate_Dir "SH3Rel"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE SH3) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "SH3Dbg"
# PROP BASE Intermediate_Dir "SH3Dbg"
# PROP BASE CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "SH3Dbg"
# PROP Intermediate_Dir "SH3Dbg"
# PROP CPU_ID "{D6519020-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "SHx" /d "SH3" /d "_SH3_" /r
CPP=shcl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "SHx" /D "SH3" /D "_SH3_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /MACHINE:SH3
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "ARMRel"
# PROP BASE Intermediate_Dir "ARMRel"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "ARMRel"
# PROP Intermediate_Dir "ARMRel"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Yu"stdafx.h" /Oxs /M$(CECrtMT) /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "NDEBUG" /Oxs /M$(CECrtMT) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE ARM) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "ARMDbg"
# PROP BASE Intermediate_Dir "ARMDbg"
# PROP BASE CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "ARMDbg"
# PROP Intermediate_Dir "ARMDbg"
# PROP CPU_ID "{D6518FFC-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "ARM" /d "_ARM_" /r
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /Yu"stdafx.h" /M$(CECrtMTDebug) /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "ARM" /D "_ARM_" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /M$(CECrtMTDebug) /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
# ADD LINK32 commctrl.lib coredll.lib /nologo /base:"0x00010000" /stack:0x10000,0x1000 /entry:"WinMainCRTStartup" /debug /nodefaultlib:"$(CENoDefaultLib)" /subsystem:$(CESubsystem) /align:"4096" /MACHINE:ARM
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "X86EMRel"
# PROP BASE Intermediate_Dir "X86EMRel"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "X86EMRel"
# PROP Intermediate_Dir "X86EMRel"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "NDEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Yu"stdafx.h" /Gz /Oxs /c
# ADD CPP /nologo /W3 /I "." /I "..\include" /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "i486" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /Gz /Oxs /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "NDEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
!ELSEIF "$(CFG)" == "plugins - Win32 (WCE x86em) Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "X86EMDbg"
# PROP BASE Intermediate_Dir "X86EMDbg"
# PROP BASE CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP BASE Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "X86EMDbg"
# PROP Intermediate_Dir "X86EMDbg"
# PROP CPU_ID "{D6518FF4-710F-11D3-99F2-00105A0DF099}"
# PROP Platform_ID "{8A9A2F80-6887-11D3-842E-005004848CBA}"
# PROP Target_Dir ""
RSC=rc.exe
# ADD BASE RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
# ADD RSC /l 0x409 /d UNDER_CE=$(CEVersion) /d _WIN32_WCE=$(CEVersion) /d "UNICODE" /d "_UNICODE" /d "DEBUG" /d "$(CePlatform)" /d "_X86_" /d "x86" /d "i486" /r
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /Zi /Od /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Yu"stdafx.h" /Gz /c
# ADD CPP /nologo /W3 /Zi /Od /I "." /I "..\include" /D "DEBUG" /D "i486" /D UNDER_CE=$(CEVersion) /D _WIN32_WCE=$(CEVersion) /D "WIN32" /D "STRICT" /D "_WIN32_WCE_EMULATION" /D "INTERNATIONAL" /D "USA" /D "INTLMSG_CODEPAGE" /D "$(CePlatform)" /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /Gz /c
# SUBTRACT CPP /YX /Yc /Yu
MTL=midl.exe
# ADD BASE MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
# ADD MTL /nologo /D "_DEBUG" /mktyplib203 /o "NUL" /win32
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
# ADD LINK32 commctrl.lib coredll.lib $(CEx86Corelibc) /nologo /stack:0x10000,0x1000 /subsystem:windows /debug /nodefaultlib:"OLDNAMES.lib" /nodefaultlib:$(CENoDefaultLib) /windowsce:emulation /MACHINE:IX86
!ENDIF
# Begin Target
# Name "plugins - Win32 (WCE MIPS) Release"
# Name "plugins - Win32 (WCE MIPS) Debug"
# Name "plugins - Win32 (WCE SH4) Release"
# Name "plugins - Win32 (WCE SH4) Debug"
# Name "plugins - Win32 (WCE SH3) Release"
# Name "plugins - Win32 (WCE SH3) Debug"
# Name "plugins - Win32 (WCE ARM) Release"
# Name "plugins - Win32 (WCE ARM) Debug"
# Name "plugins - Win32 (WCE x86em) Release"
# Name "plugins - Win32 (WCE x86em) Debug"
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* vlc.c: the vlc player, WinCE version * vlc.c: the vlc player, WinCE version
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: vlc.c,v 1.1 2002/11/13 15:28:24 sam Exp $ * $Id: vlc.c,v 1.2 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -88,7 +88,8 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, ...@@ -88,7 +88,8 @@ int WINAPI WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
window = CreateWindow( L"VLC", pwz_title, window = CreateWindow( L"VLC", pwz_title,
WS_VISIBLE | WS_SIZEBOX | WS_CAPTION, WS_VISIBLE | WS_SIZEBOX | WS_CAPTION,
CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, CW_USEDEFAULT, //CW_USEDEFAULT, CW_USEDEFAULT,
200,100,
NULL, NULL, hInst, NULL ); NULL, NULL, hInst, NULL );
ShowWindow( window, nCmdShow ); ShowWindow( window, nCmdShow );
...@@ -218,7 +219,7 @@ static long FAR PASCAL WndProc ( HWND hWnd, UINT message, ...@@ -218,7 +219,7 @@ static long FAR PASCAL WndProc ( HWND hWnd, UINT message,
case WM_CREATE: case WM_CREATE:
hwndCB = CommandBar_Create(hInst, hWnd, 1); hwndCB = CommandBar_Create(hInst, hWnd, 1);
CommandBar_InsertMenubar(hwndCB, hInst, IDM_MENU, 0); CommandBar_InsertMenubar(hwndCB, hInst, IDM_MENU, 0);
CommandBar_AddAdornments(hwndCB, 0, 0); //CommandBar_AddAdornments(hwndCB, 0, 0);
break; break;
case WM_PAINT: case WM_PAINT:
{ {
......
...@@ -386,1712 +386,10 @@ LINK32=link.exe ...@@ -386,1712 +386,10 @@ LINK32=link.exe
# Begin Group "Source Files" # Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Group "vlc"
# Begin Source File # Begin Source File
SOURCE="..\evc\vlc.c" SOURCE="..\evc\vlc.c"
# End Source File # End Source File
# End Group # End Group
# Begin Group "libvlc"
# Begin Source File
SOURCE="..\src\libvlc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Source File
SOURCE="..\src\libvlc.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Group "audio_output"
# Begin Source File
SOURCE="..\src\audio_output\common.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\filters.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\mixer.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# End Group
# Begin Group "extras"
# Begin Source File
SOURCE="..\src\extras\dirent.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\dirent.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt1.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\libc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# End Group
# Begin Group "input"
# Begin Source File
SOURCE="..\src\input\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-plugins.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_programs.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_clock.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_info.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# End Group
# Begin Group "interface"
# Begin Source File
SOURCE="..\src\interface\interface.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\interface\intf_eject.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ENDIF
# End Source File
# End Group
# Begin Group "misc"
# Begin Source File
SOURCE="..\src\misc\mtime.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\modules.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\threads.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\cpu.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\configuration.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\netutils.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso_lang.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso-639_def.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\messages.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\objects.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\variables.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\error.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\win32_specific.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# End Group
# Begin Group "playlist"
# Begin Source File
SOURCE="..\src\playlist\playlist.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ENDIF
# End Source File
# End Group
# Begin Group "stream_output"
# Begin Source File
SOURCE="..\src\stream_output\stream_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ENDIF
# End Source File
# End Group
# Begin Group "video_output"
# Begin Source File
SOURCE="..\src\video_output\video_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_subpictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 (WCE MIPS) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE MIPS) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH4) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE SH3) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE ARM) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 (WCE x86em) Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# End Group
# End Group
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE="..\include\aout_internal.h"
# End Source File
# Begin Source File
SOURCE="..\include\audio_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\beos_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\configuration.h"
# End Source File
# Begin Source File
SOURCE="..\include\darwin_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\codecs.h"
# End Source File
# Begin Source File
SOURCE="..\include\error.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-dec.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-intf.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-plugins.h"
# End Source File
# Begin Source File
SOURCE="..\include\interface.h"
# End Source File
# Begin Source File
SOURCE="..\include\intf_eject.h"
# End Source File
# Begin Source File
SOURCE="..\include\iso_lang.h"
# End Source File
# Begin Source File
SOURCE="..\include\main.h"
# End Source File
# Begin Source File
SOURCE="..\include\mmx.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules_inner.h"
# End Source File
# Begin Source File
SOURCE="..\include\mtime.h"
# End Source File
# Begin Source File
SOURCE="..\include\netutils.h"
# End Source File
# Begin Source File
SOURCE="..\include\network.h"
# End Source File
# Begin Source File
SOURCE="..\include\os_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_control.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\variables.h"
# End Source File
# Begin Source File
SOURCE="..\include\video.h"
# End Source File
# Begin Source File
SOURCE="..\include\video_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_common.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_config.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_cpu.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_messages.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_objects.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_playlist.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads_funcs.h"
# End Source File
# Begin Source File
SOURCE="..\include\win32_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_symbols.h"
# End Source File
# Begin Group "vlc"
# Begin Source File
SOURCE="..\include\vlc\vlc.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\aout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\vout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\sout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\decoder.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\input.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\intf.h"
# End Source File
# End Group
# End Group
# Begin Group "Resource Files" # Begin Group "Resource Files"
......
...@@ -3,6 +3,45 @@ Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00 ...@@ -3,6 +3,45 @@ Microsoft eMbedded Visual Tools Workspace File, Format Version 3.00
############################################################################### ###############################################################################
Project: "libvlc"=.\libvlc.vcp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugin_foo"=.\plugin_foo\plugin_foo.vcp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugins"=.\plugins.vcp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
Begin Project Dependency
Project_Dep_Name libvlc
End Project Dependency
}}}
###############################################################################
Project: "vlc"=.\vlc.vcp - Package Owner=<4> Project: "vlc"=.\vlc.vcp - Package Owner=<4>
Package=<5> Package=<5>
...@@ -11,6 +50,9 @@ Package=<5> ...@@ -11,6 +50,9 @@ Package=<5>
Package=<4> Package=<4>
{{{ {{{
Begin Project Dependency
Project_Dep_Name libvlc
End Project Dependency
}}} }}}
############################################################################### ###############################################################################
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* aout_internal.h : internal defines for audio output * aout_internal.h : internal defines for audio output
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: aout_internal.h,v 1.32 2002/11/11 22:27:00 gbazin Exp $ * $Id: aout_internal.h,v 1.33 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -54,8 +54,8 @@ typedef struct aout_alloc_t ...@@ -54,8 +54,8 @@ typedef struct aout_alloc_t
else \ else \
{ \ { \
int i_alloc_size; \ int i_alloc_size; \
i_alloc_size = (uint64_t)(p_alloc)->i_bytes_per_sec \ i_alloc_size = (int)( (uint64_t)(p_alloc)->i_bytes_per_sec \
* (i_nb_usec) / 1000000 + 1; \ * (i_nb_usec) / 1000000 + 1 ); \
ALLOCA_TEST( p_alloc, p_new_buffer ) \ ALLOCA_TEST( p_alloc, p_new_buffer ) \
{ \ { \
(p_new_buffer) = malloc( i_alloc_size + sizeof(aout_buffer_t) );\ (p_new_buffer) = malloc( i_alloc_size + sizeof(aout_buffer_t) );\
......
...@@ -506,3 +506,5 @@ ...@@ -506,3 +506,5 @@
#define HAVE_GETENV 1 #define HAVE_GETENV 1
#define HAVE_ATOF 1
# Microsoft Developer Studio Project File - Name="libvlc" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Static Library" 0x0104
CFG=libvlc - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "libvlc.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "libvlc.mak" CFG="libvlc - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "libvlc - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "libvlc - Win32 Debug" (based on "Win32 (x86) Static Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "libvlc - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
!ENDIF
# Begin Target
# Name "libvlc - Win32 Release"
# Name "libvlc - Win32 Debug"
# Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Source File
SOURCE="..\src\libvlc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Source File
SOURCE="..\src\libvlc.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Group "audio_output"
# Begin Source File
SOURCE="..\src\audio_output\common.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\filters.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\mixer.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# End Group
# Begin Group "extras"
# Begin Source File
SOURCE="..\src\extras\dirent.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\dirent.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt1.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\libc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# End Group
# Begin Group "input"
# Begin Source File
SOURCE="..\src\input\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-plugins.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_programs.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_clock.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_info.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# End Group
# Begin Group "interface"
# Begin Source File
SOURCE="..\src\interface\interface.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\interface\intf_eject.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ENDIF
# End Source File
# End Group
# Begin Group "misc"
# Begin Source File
SOURCE="..\src\misc\mtime.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\modules.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\threads.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\cpu.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\configuration.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\netutils.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso_lang.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso-639_def.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\messages.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\objects.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\variables.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\error.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\win32_specific.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# End Group
# Begin Group "playlist"
# Begin Source File
SOURCE="..\src\playlist\playlist.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ENDIF
# End Source File
# End Group
# Begin Group "stream_output"
# Begin Source File
SOURCE="..\src\stream_output\stream_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ENDIF
# End Source File
# End Group
# Begin Group "video_output"
# Begin Source File
SOURCE="..\src\video_output\video_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_subpictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# End Group
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE="..\include\aout_internal.h"
# End Source File
# Begin Source File
SOURCE="..\include\audio_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\beos_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\configuration.h"
# End Source File
# Begin Source File
SOURCE="..\include\darwin_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\codecs.h"
# End Source File
# Begin Source File
SOURCE="..\include\error.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-dec.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-intf.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-plugins.h"
# End Source File
# Begin Source File
SOURCE="..\include\interface.h"
# End Source File
# Begin Source File
SOURCE="..\include\intf_eject.h"
# End Source File
# Begin Source File
SOURCE="..\include\iso_lang.h"
# End Source File
# Begin Source File
SOURCE="..\include\main.h"
# End Source File
# Begin Source File
SOURCE="..\include\mmx.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules_inner.h"
# End Source File
# Begin Source File
SOURCE="..\include\mtime.h"
# End Source File
# Begin Source File
SOURCE="..\include\netutils.h"
# End Source File
# Begin Source File
SOURCE="..\include\network.h"
# End Source File
# Begin Source File
SOURCE="..\include\os_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_control.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\variables.h"
# End Source File
# Begin Source File
SOURCE="..\include\video.h"
# End Source File
# Begin Source File
SOURCE="..\include\video_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_common.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_config.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_cpu.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_messages.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_objects.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_playlist.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads_funcs.h"
# End Source File
# Begin Source File
SOURCE="..\include\win32_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_symbols.h"
# End Source File
# Begin Group "vlc"
# Begin Source File
SOURCE="..\include\vlc\vlc.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\aout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\vout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\sout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\decoder.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\input.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\intf.h"
# End Source File
# End Group
# End Group
# End Target
# End Project
# Microsoft Developer Studio Project File - Name="libvlc" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Static Library" 0x0104
CFG=libvlc - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "libvlc.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "libvlc.mak" CFG="libvlc - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "libvlc - Win32 Release" (based on "Win32 (x86) Static Library")
!MESSAGE "libvlc - Win32 Debug" (based on "Win32 (x86) Static Library")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "libvlc - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_MBCS" /D "_LIB" /YX /FD /c
# ADD BASE RSC /l 0x409 /d "NDEBUG"
# ADD RSC /l 0x409 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
!ELSEIF "$(CFG)" == "libvlc - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
# ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_MBCS" /D "_LIB" /YX /FD /GZ /c
# ADD BASE RSC /l 0x409 /d "_DEBUG"
# ADD RSC /l 0x409 /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo
!ENDIF
# Begin Target
# Name "libvlc - Win32 Release"
# Name "libvlc - Win32 Debug"
# Microsoft Developer Studio Project File - Name="plugins" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=plugins - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "plugins.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "plugins.mak" CFG="plugins - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "plugins - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "plugins - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "plugins - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c
# ADD BASE RSC /l 0x414 /d "NDEBUG"
# ADD RSC /l 0x414 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /machine:I386
!ELSEIF "$(CFG)" == "plugins - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c
# ADD BASE RSC /l 0x414 /d "_DEBUG"
# ADD RSC /l 0x809 /i "../" /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# SUBTRACT LINK32 /pdb:none
!ENDIF
# Begin Target
# Name "plugins - Win32 Release"
# Name "plugins - Win32 Debug"
# Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# End Group
# End Target
# End Project
# Microsoft Developer Studio Project File - Name="plugins" - Package Owner=<4>
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Console Application" 0x0103
CFG=plugins - Win32 Debug
!MESSAGE This is not a valid makefile. To build this project using NMAKE,
!MESSAGE use the Export Makefile command and run
!MESSAGE
!MESSAGE NMAKE /f "plugins.mak".
!MESSAGE
!MESSAGE You can specify a configuration when running NMAKE
!MESSAGE by defining the macro CFG on the command line. For example:
!MESSAGE
!MESSAGE NMAKE /f "plugins.mak" CFG="plugins - Win32 Debug"
!MESSAGE
!MESSAGE Possible choices for configuration are:
!MESSAGE
!MESSAGE "plugins - Win32 Release" (based on "Win32 (x86) Console Application")
!MESSAGE "plugins - Win32 Debug" (based on "Win32 (x86) Console Application")
!MESSAGE
# Begin Project
# PROP AllowPerConfigDependencies 0
# PROP Scc_ProjName ""
# PROP Scc_LocalPath ""
CPP=cl.exe
RSC=rc.exe
!IF "$(CFG)" == "plugins - Win32 Release"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 0
# PROP BASE Output_Dir "Release"
# PROP BASE Intermediate_Dir "Release"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 0
# PROP Output_Dir "Release"
# PROP Intermediate_Dir "Release"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c
# ADD BASE RSC /l 0x414 /d "NDEBUG"
# ADD RSC /l 0x414 /d "NDEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /machine:I386
!ELSEIF "$(CFG)" == "plugins - Win32 Debug"
# PROP BASE Use_MFC 0
# PROP BASE Use_Debug_Libraries 1
# PROP BASE Output_Dir "Debug"
# PROP BASE Intermediate_Dir "Debug"
# PROP BASE Target_Dir ""
# PROP Use_MFC 0
# PROP Use_Debug_Libraries 1
# PROP Output_Dir "Debug"
# PROP Intermediate_Dir "Debug"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c
# ADD BASE RSC /l 0x414 /d "_DEBUG"
# ADD RSC /l 0x809 /i "../" /d "_DEBUG"
BSC32=bscmake.exe
# ADD BASE BSC32 /nologo
# ADD BSC32 /nologo
LINK32=link.exe
# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib ws2_32.lib netapi32.lib winmm.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
# SUBTRACT LINK32 /pdb:none
!ENDIF
# Begin Target
# Name "plugins - Win32 Release"
# Name "plugins - Win32 Debug"
...@@ -42,7 +42,7 @@ RSC=rc.exe ...@@ -42,7 +42,7 @@ RSC=rc.exe
# PROP Ignore_Export_Lib 0 # PROP Ignore_Export_Lib 0
# PROP Target_Dir "" # PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c # ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x414 /d "NDEBUG" # ADD BASE RSC /l 0x414 /d "NDEBUG"
# ADD RSC /l 0x414 /d "NDEBUG" # ADD RSC /l 0x414 /d "NDEBUG"
BSC32=bscmake.exe BSC32=bscmake.exe
...@@ -66,7 +66,7 @@ LINK32=link.exe ...@@ -66,7 +66,7 @@ LINK32=link.exe
# PROP Ignore_Export_Lib 0 # PROP Ignore_Export_Lib 0
# PROP Target_Dir "" # PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
# ADD BASE RSC /l 0x414 /d "_DEBUG" # ADD BASE RSC /l 0x414 /d "_DEBUG"
# ADD RSC /l 0x809 /i "../" /d "_DEBUG" # ADD RSC /l 0x809 /i "../" /d "_DEBUG"
BSC32=bscmake.exe BSC32=bscmake.exe
...@@ -86,656 +86,10 @@ LINK32=link.exe ...@@ -86,656 +86,10 @@ LINK32=link.exe
# Begin Group "Source Files" # Begin Group "Source Files"
# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat" # PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
# Begin Group "vlc"
# Begin Source File # Begin Source File
SOURCE="..\src\vlc.c" SOURCE="..\src\vlc.c"
# End Source File # End Source File
# End Group # End Group
# Begin Group "libvlc"
# Begin Source File
SOURCE="..\src\libvlc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Source File
SOURCE="..\src\libvlc.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
# End Source File
# Begin Group "audio_output"
# Begin Source File
SOURCE="..\src\audio_output\common.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\filters.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\mixer.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\audio_output\intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\audio_output"
# PROP Output_Dir "Release\audio_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\audio_output"
# PROP Output_Dir "Debug\audio_output"
!ENDIF
# End Source File
# End Group
# Begin Group "extras"
# Begin Source File
SOURCE="..\src\extras\dirent.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\dirent.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\getopt1.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\extras\libc.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\extras"
# PROP Output_Dir "Release\extras"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\extras"
# PROP Output_Dir "Debug\extras"
!ENDIF
# End Source File
# End Group
# Begin Group "input"
# Begin Source File
SOURCE="..\src\input\input.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-plugins.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_ext-intf.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_dec.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_programs.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_clock.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\input\input_info.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\input"
# PROP Output_Dir "Release\input"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\input"
# PROP Output_Dir "Debug\input"
!ENDIF
# End Source File
# End Group
# Begin Group "interface"
# Begin Source File
SOURCE="..\src\interface\interface.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\interface\intf_eject.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\interface"
# PROP Output_Dir "Release\interface"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\interface"
# PROP Output_Dir "Debug\interface"
!ENDIF
# End Source File
# End Group
# Begin Group "misc"
# Begin Source File
SOURCE="..\src\misc\mtime.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\modules.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\threads.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\cpu.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\configuration.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\netutils.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso_lang.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\iso-639_def.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\messages.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\objects.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\variables.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\error.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\misc\win32_specific.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\misc"
# PROP Output_Dir "Release\misc"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\misc"
# PROP Output_Dir "Debug\misc"
!ENDIF
# End Source File
# End Group
# Begin Group "playlist"
# Begin Source File
SOURCE="..\src\playlist\playlist.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\playlist"
# PROP Output_Dir "Release\playlist"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\playlist"
# PROP Output_Dir "Debug\playlist"
!ENDIF
# End Source File
# End Group
# Begin Group "stream_output"
# Begin Source File
SOURCE="..\src\stream_output\stream_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\stream_output"
# PROP Output_Dir "Release\stream_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\stream_output"
# PROP Output_Dir "Debug\stream_output"
!ENDIF
# End Source File
# End Group
# Begin Group "video_output"
# Begin Source File
SOURCE="..\src\video_output\video_output.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_pictures.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\video_text.h"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# Begin Source File
SOURCE="..\src\video_output\vout_subpictures.c"
# ADD CPP /D "__VLC__" /D PLUGIN_PATH=\"plugins\" /D DATA_PATH=\"share\"
!IF "$(CFG)" == "vlc - Win32 Release"
# PROP Intermediate_Dir "Release\video_output"
# PROP Output_Dir "Release\video_output"
!ELSEIF "$(CFG)" == "vlc - Win32 Debug"
# PROP Intermediate_Dir "Debug\video_output"
# PROP Output_Dir "Debug\video_output"
!ENDIF
# End Source File
# End Group
# End Group
# End Group
# Begin Group "Header Files"
# PROP Default_Filter "h;hpp;hxx;hm;inl"
# Begin Source File
SOURCE="..\include\aout_internal.h"
# End Source File
# Begin Source File
SOURCE="..\include\audio_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\beos_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\configuration.h"
# End Source File
# Begin Source File
SOURCE="..\include\darwin_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\codecs.h"
# End Source File
# Begin Source File
SOURCE="..\include\error.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-dec.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-intf.h"
# End Source File
# Begin Source File
SOURCE="..\include\input_ext-plugins.h"
# End Source File
# Begin Source File
SOURCE="..\include\interface.h"
# End Source File
# Begin Source File
SOURCE="..\include\intf_eject.h"
# End Source File
# Begin Source File
SOURCE="..\include\iso_lang.h"
# End Source File
# Begin Source File
SOURCE="..\include\main.h"
# End Source File
# Begin Source File
SOURCE="..\include\mmx.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules.h"
# End Source File
# Begin Source File
SOURCE="..\include\modules_inner.h"
# End Source File
# Begin Source File
SOURCE="..\include\mtime.h"
# End Source File
# Begin Source File
SOURCE="..\include\netutils.h"
# End Source File
# Begin Source File
SOURCE="..\include\network.h"
# End Source File
# Begin Source File
SOURCE="..\include\os_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_control.h"
# End Source File
# Begin Source File
SOURCE="..\include\stream_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\variables.h"
# End Source File
# Begin Source File
SOURCE="..\include\video.h"
# End Source File
# Begin Source File
SOURCE="..\include\video_output.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_common.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_config.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_cpu.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_messages.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_objects.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_playlist.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_threads_funcs.h"
# End Source File
# Begin Source File
SOURCE="..\include\win32_specific.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc_symbols.h"
# End Source File
# Begin Group "vlc"
# Begin Source File
SOURCE="..\include\vlc\vlc.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\aout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\vout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\sout.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\decoder.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\input.h"
# End Source File
# Begin Source File
SOURCE="..\include\vlc\intf.h"
# End Source File
# End Group
# End Group
# Begin Group "Resource Files" # Begin Group "Resource Files"
......
...@@ -42,7 +42,7 @@ RSC=rc.exe ...@@ -42,7 +42,7 @@ RSC=rc.exe
# PROP Ignore_Export_Lib 0 # PROP Ignore_Export_Lib 0
# PROP Target_Dir "" # PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c # ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD CPP /nologo /MT /W3 /GX /O2 /I "." /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD -I..\include /c # ADD CPP /nologo /MD /W3 /GX /O2 /I "." /I "..\include" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
# ADD BASE RSC /l 0x414 /d "NDEBUG" # ADD BASE RSC /l 0x414 /d "NDEBUG"
# ADD RSC /l 0x414 /d "NDEBUG" # ADD RSC /l 0x414 /d "NDEBUG"
BSC32=bscmake.exe BSC32=bscmake.exe
...@@ -66,7 +66,7 @@ LINK32=link.exe ...@@ -66,7 +66,7 @@ LINK32=link.exe
# PROP Ignore_Export_Lib 0 # PROP Ignore_Export_Lib 0
# PROP Target_Dir "" # PROP Target_Dir ""
# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c # ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
# ADD CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /I "." /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ -I..\include /c # ADD CPP /nologo /MDd /W3 /Gm /GX /ZI /Od /I "." /I "..\include" /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /FR /YX /FD /GZ /c
# ADD BASE RSC /l 0x414 /d "_DEBUG" # ADD BASE RSC /l 0x414 /d "_DEBUG"
# ADD RSC /l 0x809 /i "../" /d "_DEBUG" # ADD RSC /l 0x809 /i "../" /d "_DEBUG"
BSC32=bscmake.exe BSC32=bscmake.exe
......
...@@ -3,6 +3,30 @@ Microsoft Developer Studio Workspace File, Format Version 6.00 ...@@ -3,6 +3,30 @@ Microsoft Developer Studio Workspace File, Format Version 6.00
############################################################################### ###############################################################################
Project: "libvlc"=.\libvlc.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "plugins"=.\plugins.dsp - Package Owner=<4>
Package=<5>
{{{
}}}
Package=<4>
{{{
}}}
###############################################################################
Project: "vlc"=.\vlc.dsp - Package Owner=<4> Project: "vlc"=.\vlc.dsp - Package Owner=<4>
Package=<5> Package=<5>
...@@ -11,6 +35,9 @@ Package=<5> ...@@ -11,6 +35,9 @@ Package=<5>
Package=<4> Package=<4>
{{{ {{{
Begin Project Dependency
Project_Dep_Name libvlc
End Project Dependency
}}} }}}
############################################################################### ###############################################################################
......
...@@ -28,7 +28,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US ...@@ -28,7 +28,7 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
// Icon with lowest ID value placed first to ensure application icon // Icon with lowest ID value placed first to ensure application icon
// remains consistent on all systems. // remains consistent on all systems.
IDI_NIOUP ICON DISCARDABLE "nioup.ICO" IDI_NIOUP ICON DISCARDABLE "vlc48x48.ico"
#ifdef APSTUDIO_INVOKED #ifdef APSTUDIO_INVOKED
///////////////////////////////////////////////////////////////////////////// /////////////////////////////////////////////////////////////////////////////
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* common.c : audio output management of common data structures * common.c : audio output management of common data structures
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: common.c,v 1.7 2002/11/12 13:57:13 sam Exp $ * $Id: common.c,v 1.8 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -404,7 +404,7 @@ mtime_t aout_DateIncrement( audio_date_t * p_date, u32 i_nb_samples ) ...@@ -404,7 +404,7 @@ mtime_t aout_DateIncrement( audio_date_t * p_date, u32 i_nb_samples )
{ {
mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000; mtime_t i_dividend = (mtime_t)i_nb_samples * 1000000;
p_date->date += i_dividend / p_date->i_divider; p_date->date += i_dividend / p_date->i_divider;
p_date->i_remainder += i_dividend % p_date->i_divider; p_date->i_remainder += (int)(i_dividend % p_date->i_divider);
if ( p_date->i_remainder >= p_date->i_divider ) if ( p_date->i_remainder >= p_date->i_divider )
{ {
/* This is Bresenham algorithm. */ /* This is Bresenham algorithm. */
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input.c : internal management of input streams for the audio output * input.c : internal management of input streams for the audio output
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: input.c,v 1.20 2002/11/11 22:27:00 gbazin Exp $ * $Id: input.c,v 1.21 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -214,7 +214,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, ...@@ -214,7 +214,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
mtime_t drift = p_buffer->start_date - start_date; mtime_t drift = p_buffer->start_date - start_date;
p_input->i_resamp_start_date = mdate(); p_input->i_resamp_start_date = mdate();
p_input->i_resamp_start_drift = drift; p_input->i_resamp_start_drift = (int)drift;
if ( drift > 0 ) if ( drift > 0 )
p_input->i_resampling_type = AOUT_RESAMPLING_DOWN; p_input->i_resampling_type = AOUT_RESAMPLING_DOWN;
...@@ -251,7 +251,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, ...@@ -251,7 +251,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
msg_Warn( p_aout, "resampling stopped after "I64Fi" usec", msg_Warn( p_aout, "resampling stopped after "I64Fi" usec",
mdate() - p_input->i_resamp_start_date ); mdate() - p_input->i_resamp_start_date );
} }
else if( abs( p_buffer->start_date - start_date ) < else if( abs( (int)(p_buffer->start_date - start_date) ) <
abs( p_input->i_resamp_start_drift ) / 2 ) abs( p_input->i_resamp_start_drift ) / 2 )
{ {
/* if we reduced the drift from half, then it is time to switch /* if we reduced the drift from half, then it is time to switch
...@@ -263,7 +263,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input, ...@@ -263,7 +263,7 @@ int aout_InputPlay( aout_instance_t * p_aout, aout_input_t * p_input,
p_input->i_resamp_start_drift = 0; p_input->i_resamp_start_drift = 0;
} }
else if( p_input->i_resamp_start_drift && else if( p_input->i_resamp_start_drift &&
( abs( p_buffer->start_date - start_date ) > ( abs( (int)(p_buffer->start_date - start_date) ) >
abs( p_input->i_resamp_start_drift ) * 3 / 2 ) ) abs( p_input->i_resamp_start_drift ) * 3 / 2 ) )
{ {
/* If the drift is increasing and not decreasing, than something /* If the drift is increasing and not decreasing, than something
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf.c : audio output API towards the interface modules * intf.c : audio output API towards the interface modules
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: intf.c,v 1.5 2002/10/20 12:23:48 massiot Exp $ * $Id: intf.c,v 1.6 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -213,7 +213,7 @@ int aout_VolumeDown( aout_instance_t * p_aout, int i_nb_steps, ...@@ -213,7 +213,7 @@ int aout_VolumeDown( aout_instance_t * p_aout, int i_nb_steps,
/* Meant to be called by the output plug-in's Open(). */ /* Meant to be called by the output plug-in's Open(). */
void aout_VolumeSoftInit( aout_instance_t * p_aout ) void aout_VolumeSoftInit( aout_instance_t * p_aout )
{ {
int i_volume; audio_volume_t i_volume;
p_aout->output.pf_volume_infos = aout_VolumeSoftInfos; p_aout->output.pf_volume_infos = aout_VolumeSoftInfos;
p_aout->output.pf_volume_get = aout_VolumeSoftGet; p_aout->output.pf_volume_get = aout_VolumeSoftGet;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mixer.c : audio output mixing operations * mixer.c : audio output mixing operations
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: mixer.c,v 1.19 2002/11/08 10:26:53 gbazin Exp $ * $Id: mixer.c,v 1.20 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -208,7 +208,7 @@ static int MixBuffer( aout_instance_t * p_aout ) ...@@ -208,7 +208,7 @@ static int MixBuffer( aout_instance_t * p_aout )
{ {
/* Additionally check that p_first_byte_to_mix is well /* Additionally check that p_first_byte_to_mix is well
* located. */ * located. */
unsigned long i_nb_bytes = (start_date - p_buffer->start_date) mtime_t i_nb_bytes = (start_date - p_buffer->start_date)
* p_aout->mixer.mixer.i_bytes_per_frame * p_aout->mixer.mixer.i_bytes_per_frame
* p_aout->mixer.mixer.i_rate * p_aout->mixer.mixer.i_rate
/ p_aout->mixer.mixer.i_frame_length / p_aout->mixer.mixer.i_frame_length
......
...@@ -9,9 +9,9 @@ ...@@ -9,9 +9,9 @@
* Significantly revised and rewinddir, seekdir and telldir added by Colin * Significantly revised and rewinddir, seekdir and telldir added by Colin
* Peters <colin@fu.is.saga-u.ac.jp> * Peters <colin@fu.is.saga-u.ac.jp>
* *
* $Revision: 1.5 $ * $Revision: 1.6 $
* $Author: sam $ * $Author: sam $
* $Date: 2002/11/11 14:39:12 $ * $Date: 2002/11/13 20:51:04 $
* *
*/ */
...@@ -181,7 +181,7 @@ readdir (DIR * dirp) ...@@ -181,7 +181,7 @@ readdir (DIR * dirp)
{ {
/* We haven't started the search yet. */ /* We haven't started the search yet. */
/* Start the search */ /* Start the search */
dirp->dd_handle = FindFirstFile (dirp->dd_name, &(dirp->dd_dta)); dirp->dd_handle = (long)FindFirstFile (dirp->dd_name, &(dirp->dd_dta));
if (dirp->dd_handle == -1) if (dirp->dd_handle == -1)
{ {
...@@ -197,10 +197,10 @@ readdir (DIR * dirp) ...@@ -197,10 +197,10 @@ readdir (DIR * dirp)
else else
{ {
/* Get the next search entry. */ /* Get the next search entry. */
if (FindNextFile (dirp->dd_handle, &(dirp->dd_dta))) if (FindNextFile ((HANDLE)dirp->dd_handle, &(dirp->dd_dta)))
{ {
/* We are off the end or otherwise error. */ /* We are off the end or otherwise error. */
FindClose (dirp->dd_handle); FindClose ((HANDLE)dirp->dd_handle);
dirp->dd_handle = -1; dirp->dd_handle = -1;
dirp->dd_stat = -1; dirp->dd_stat = -1;
} }
...@@ -246,7 +246,7 @@ closedir (DIR * dirp) ...@@ -246,7 +246,7 @@ closedir (DIR * dirp)
if (dirp->dd_handle != -1) if (dirp->dd_handle != -1)
{ {
rc = FindClose (dirp->dd_handle); rc = FindClose ((HANDLE)dirp->dd_handle);
} }
/* Delete the dir structure. */ /* Delete the dir structure. */
...@@ -274,7 +274,7 @@ rewinddir (DIR * dirp) ...@@ -274,7 +274,7 @@ rewinddir (DIR * dirp)
if (dirp->dd_handle != -1) if (dirp->dd_handle != -1)
{ {
FindClose (dirp->dd_handle); FindClose ((HANDLE)dirp->dd_handle);
} }
dirp->dd_handle = -1; dirp->dd_handle = -1;
...@@ -331,7 +331,7 @@ seekdir (DIR * dirp, long lPos) ...@@ -331,7 +331,7 @@ seekdir (DIR * dirp, long lPos)
/* Seek past end. */ /* Seek past end. */
if (dirp->dd_handle != -1) if (dirp->dd_handle != -1)
{ {
FindClose (dirp->dd_handle); FindClose ((HANDLE)dirp->dd_handle);
} }
dirp->dd_handle = -1; dirp->dd_handle = -1;
dirp->dd_stat = -1; dirp->dd_stat = -1;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* libc.c: Extra libc function for some systems. * libc.c: Extra libc function for some systems.
***************************************************************************** *****************************************************************************
* Copyright (C) 2002 VideoLAN * Copyright (C) 2002 VideoLAN
* $Id: libc.c,v 1.2 2002/11/12 10:44:04 gbazin Exp $ * $Id: libc.c,v 1.3 2002/11/13 20:51:04 sam Exp $
* *
* Authors: Jon Lech Johansen <jon-vl@nanocrew.net> * Authors: Jon Lech Johansen <jon-vl@nanocrew.net>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -150,7 +150,7 @@ double atof( const char *nptr ) ...@@ -150,7 +150,7 @@ double atof( const char *nptr )
#if !defined( HAVE_LSEEK ) #if !defined( HAVE_LSEEK )
off_t lseek( int fildes, off_t offset, int whence ) off_t lseek( int fildes, off_t offset, int whence )
{ {
return SetFilePointer( (HANDLE)fildes, offset, NULL, whence ); return SetFilePointer( (HANDLE)fildes, (long)offset, NULL, whence );
} }
#endif #endif
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_ext-dec.c: services to the decoders * input_ext-dec.c: services to the decoders
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: input_ext-dec.c,v 1.41 2002/11/11 14:39:12 sam Exp $ * $Id: input_ext-dec.c,v 1.42 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -203,7 +203,7 @@ void BitstreamNextDataPacket( bit_stream_t * p_bit_stream ) ...@@ -203,7 +203,7 @@ void BitstreamNextDataPacket( bit_stream_t * p_bit_stream )
u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits ) u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
{ {
/* We just fill in the bit buffer. */ /* We just fill in the bit buffer. */
while( p_bit_stream->fifo.i_available < i_bits ) while( (unsigned int)p_bit_stream->fifo.i_available < i_bits )
{ {
if( p_bit_stream->p_byte < p_bit_stream->p_end ) if( p_bit_stream->p_byte < p_bit_stream->p_end )
{ {
...@@ -221,7 +221,7 @@ u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits ) ...@@ -221,7 +221,7 @@ u32 UnalignedShowBits( bit_stream_t * p_bit_stream, unsigned int i_bits )
/* We are not aligned anymore. */ /* We are not aligned anymore. */
if( ((ptrdiff_t)p_bit_stream->p_byte if( ((ptrdiff_t)p_bit_stream->p_byte
& (sizeof(WORD_TYPE) - 1)) * 8 & (sizeof(WORD_TYPE) - 1)) * 8
< p_bit_stream->fifo.i_available ) < (unsigned int)p_bit_stream->fifo.i_available )
{ {
/* We are not aligned, and won't be. Copy the first word /* We are not aligned, and won't be. Copy the first word
* of the packet in a temporary buffer, and we'll see * of the packet in a temporary buffer, and we'll see
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* input_ext-plugins.c: useful functions for access and demux plug-ins * input_ext-plugins.c: useful functions for access and demux plug-ins
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: input_ext-plugins.c,v 1.23 2002/11/12 13:57:13 sam Exp $ * $Id: input_ext-plugins.c,v 1.24 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Christophe Massiot <massiot@via.ecp.fr> * Authors: Christophe Massiot <massiot@via.ecp.fr>
* *
...@@ -395,8 +395,8 @@ static inline pes_packet_t * NewPES( input_buffers_t * p_buffers ) ...@@ -395,8 +395,8 @@ static inline pes_packet_t * NewPES( input_buffers_t * p_buffers )
} }
p_pes->p_next = NULL; p_pes->p_next = NULL;
p_pes->b_data_alignment = p_pes->b_discontinuity = p_pes->b_data_alignment = p_pes->b_discontinuity = VLC_FALSE;
p_pes->i_pts = p_pes->i_dts = 0; p_pes->i_pts = p_pes->i_dts = 0;
p_pes->p_first = p_pes->p_last = NULL; p_pes->p_first = p_pes->p_last = NULL;
p_pes->i_pes_size = 0; p_pes->i_pes_size = 0;
p_pes->i_nb_data = 0; p_pes->i_nb_data = 0;
...@@ -518,10 +518,10 @@ ssize_t input_FillBuffer( input_thread_t * p_input ) ...@@ -518,10 +518,10 @@ ssize_t input_FillBuffer( input_thread_t * p_input )
*****************************************************************************/ *****************************************************************************/
ssize_t input_Peek( input_thread_t * p_input, byte_t ** pp_byte, size_t i_size ) ssize_t input_Peek( input_thread_t * p_input, byte_t ** pp_byte, size_t i_size )
{ {
if( p_input->p_last_data - p_input->p_current_data < i_size ) if( p_input->p_last_data - p_input->p_current_data < (ptrdiff_t)i_size )
{ {
/* Go to the next buffer */ /* Go to the next buffer */
ssize_t i_ret = input_FillBuffer( p_input ); size_t i_ret = input_FillBuffer( p_input );
if( i_size == -1 ) if( i_size == -1 )
{ {
...@@ -543,10 +543,10 @@ ssize_t input_Peek( input_thread_t * p_input, byte_t ** pp_byte, size_t i_size ) ...@@ -543,10 +543,10 @@ ssize_t input_Peek( input_thread_t * p_input, byte_t ** pp_byte, size_t i_size )
ssize_t input_SplitBuffer( input_thread_t * p_input, ssize_t input_SplitBuffer( input_thread_t * p_input,
data_packet_t ** pp_data, size_t i_size ) data_packet_t ** pp_data, size_t i_size )
{ {
if( p_input->p_last_data - p_input->p_current_data < i_size ) if( p_input->p_last_data - p_input->p_current_data < (ptrdiff_t)i_size )
{ {
/* Go to the next buffer */ /* Go to the next buffer */
ssize_t i_ret = input_FillBuffer( p_input ); size_t i_ret = input_FillBuffer( p_input );
if( i_ret == -1 ) if( i_ret == -1 )
{ {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* intf_eject.c: CD/DVD-ROM ejection handling functions * intf_eject.c: CD/DVD-ROM ejection handling functions
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: intf_eject.c,v 1.17 2002/11/11 14:39:12 sam Exp $ * $Id: intf_eject.c,v 1.18 2002/11/13 20:51:05 sam Exp $
* *
* Author: Julien Blache <jb@technologeek.org> for the Linux part * Author: Julien Blache <jb@technologeek.org> for the Linux part
* with code taken from the Linux "eject" command * with code taken from the Linux "eject" command
...@@ -109,7 +109,7 @@ static int EjectSCSI ( int i_fd ); ...@@ -109,7 +109,7 @@ static int EjectSCSI ( int i_fd );
*****************************************************************************/ *****************************************************************************/
int __intf_Eject( vlc_object_t *p_this, const char *psz_device ) int __intf_Eject( vlc_object_t *p_this, const char *psz_device )
{ {
int i_ret; int i_ret = VLC_SUCCESS;
#ifdef SYS_DARWIN #ifdef SYS_DARWIN
FILE *p_eject; FILE *p_eject;
...@@ -152,11 +152,11 @@ int __intf_Eject( vlc_object_t *p_this, const char *psz_device ) ...@@ -152,11 +152,11 @@ int __intf_Eject( vlc_object_t *p_this, const char *psz_device )
} }
} }
return 1; return VLC_EGENERIC;
#elif defined(UNDER_CE) #elif defined(UNDER_CE)
msg_Warn( p_this, "CD-Rom ejection unsupported on this platform" ); msg_Warn( p_this, "CD-Rom ejection unsupported on this platform" );
return 1; return i_ret;
#elif defined(WIN32) #elif defined(WIN32)
HANDLE h_drive ; HANDLE h_drive ;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* configuration.c management of the modules configuration * configuration.c management of the modules configuration
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: configuration.c,v 1.45 2002/11/11 14:39:12 sam Exp $ * $Id: configuration.c,v 1.46 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Gildas Bazin <gbazin@netcourrier.com> * Authors: Gildas Bazin <gbazin@netcourrier.com>
* *
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
#endif #endif
#if defined(HAVE_GETPWUID) #if defined(HAVE_GETPWUID)
#include <pwd.h> /* getpwuid() */ # include <pwd.h> /* getpwuid() */
#endif #endif
#if defined( HAVE_SYS_STAT_H ) #if defined( HAVE_SYS_STAT_H )
...@@ -52,6 +52,9 @@ ...@@ -52,6 +52,9 @@
#if defined( HAVE_SYS_TYPES_H ) #if defined( HAVE_SYS_TYPES_H )
# include <sys/types.h> # include <sys/types.h>
#endif #endif
#if defined( WIN32 ) && !defined( UNDER_CE )
# include <direct.h>
#endif
/***************************************************************************** /*****************************************************************************
* config_GetInt: get the value of an int variable * config_GetInt: get the value of an int variable
...@@ -525,7 +528,8 @@ int __config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name ) ...@@ -525,7 +528,8 @@ int __config_LoadConfigFile( vlc_object_t *p_this, const char *psz_module_name )
{ {
if( (line[0] == '[') if( (line[0] == '[')
&& (p_index = strchr(line,']')) && (p_index = strchr(line,']'))
&& (p_index - &line[1] == strlen((*pp_parser)->psz_object_name)) && (p_index - &line[1]
== (int)strlen((*pp_parser)->psz_object_name))
&& !memcmp( &line[1], (*pp_parser)->psz_object_name, && !memcmp( &line[1], (*pp_parser)->psz_object_name,
strlen((*pp_parser)->psz_object_name) ) ) strlen((*pp_parser)->psz_object_name) ) )
{ {
...@@ -762,9 +766,9 @@ int __config_SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name ) ...@@ -762,9 +766,9 @@ int __config_SaveConfigFile( vlc_object_t *p_this, const char *psz_module_name )
pp_parser++ ) pp_parser++ )
{ {
if( ((p_index2 - &p_line[1]) if( ((p_index2 - &p_line[1])
== strlen((*pp_parser)->psz_object_name) ) && == (int)strlen((*pp_parser)->psz_object_name) )
!memcmp( &p_line[1], (*pp_parser)->psz_object_name, && !memcmp( &p_line[1], (*pp_parser)->psz_object_name,
strlen((*pp_parser)->psz_object_name) ) ) strlen((*pp_parser)->psz_object_name) ) )
{ {
if( !psz_module_name ) if( !psz_module_name )
break; break;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* iso_lang.c: function to decode language code (in dvd or a52 for instance). * iso_lang.c: function to decode language code (in dvd or a52 for instance).
***************************************************************************** *****************************************************************************
* Copyright (C) 1998-2001 VideoLAN * Copyright (C) 1998-2001 VideoLAN
* $Id: iso_lang.c,v 1.7 2002/11/10 18:04:24 sam Exp $ * $Id: iso_lang.c,v 1.8 2002/11/13 20:51:05 sam Exp $
* *
* Author: Stphane Borel <stef@via.ecp.fr> * Author: Stphane Borel <stef@via.ecp.fr>
* Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr> * Arnaud de Bossoreille de Ribou <bozo@via.ecp.fr>
...@@ -57,7 +57,7 @@ const char * DecodeLanguage( u16 i_code ) ...@@ -57,7 +57,7 @@ const char * DecodeLanguage( u16 i_code )
u8 psz_code[3]; u8 psz_code[3];
psz_code[0] = i_code >> 8; psz_code[0] = i_code >> 8;
psz_code[1] = i_code; psz_code[1] = i_code & 0xff;
psz_code[2] = '\0'; psz_code[2] = '\0';
for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ ) for( p_lang = p_languages; p_lang->psz_eng_name; p_lang++ )
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* netutils.c: various network functions * netutils.c: various network functions
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: netutils.c,v 1.76 2002/11/11 14:39:12 sam Exp $ * $Id: netutils.c,v 1.77 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Benoit Steiner <benny@via.ecp.fr> * Benoit Steiner <benny@via.ecp.fr>
...@@ -214,6 +214,7 @@ int __network_ChannelJoin( vlc_object_t *p_this, int i_channel ) ...@@ -214,6 +214,7 @@ int __network_ChannelJoin( vlc_object_t *p_this, int i_channel )
socket_desc.i_server_port = i_port; socket_desc.i_server_port = i_port;
/* Find an appropriate network module */ /* Find an appropriate network module */
p_this->p_private = (void*) &socket_desc;
p_network = module_Need( p_this, "network", psz_network/*, &socket_desc*/ ); p_network = module_Need( p_this, "network", psz_network/*, &socket_desc*/ );
if( p_network == NULL ) if( p_network == NULL )
{ {
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* playlist.c : Playlist management functions * playlist.c : Playlist management functions
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: playlist.c,v 1.20 2002/11/13 12:58:19 gbazin Exp $ * $Id: playlist.c,v 1.21 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Samuel Hocevar <sam@zoy.org> * Authors: Samuel Hocevar <sam@zoy.org>
* *
...@@ -416,7 +416,7 @@ static void SkipItem( playlist_t *p_playlist, int i_arg ) ...@@ -416,7 +416,7 @@ static void SkipItem( playlist_t *p_playlist, int i_arg )
/* Increment */ /* Increment */
if( b_random ) if( b_random )
{ {
srand( mdate() ); srand( (unsigned int)mdate() );
/* Simple random stuff - we cheat a bit to minimize the chances to /* Simple random stuff - we cheat a bit to minimize the chances to
* get the same index again. */ * get the same index again. */
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
* thread, and destroy a previously oppened video output thread. * thread, and destroy a previously oppened video output thread.
***************************************************************************** *****************************************************************************
* Copyright (C) 2000-2001 VideoLAN * Copyright (C) 2000-2001 VideoLAN
* $Id: video_output.c,v 1.196 2002/11/10 18:04:24 sam Exp $ * $Id: video_output.c,v 1.197 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* *
...@@ -52,8 +52,8 @@ static void EndThread ( vout_thread_t * ); ...@@ -52,8 +52,8 @@ static void EndThread ( vout_thread_t * );
static void DestroyThread ( vout_thread_t * ); static void DestroyThread ( vout_thread_t * );
static int ReduceHeight ( int ); static int ReduceHeight ( int );
static int BinaryLog ( u32 ); static int BinaryLog ( uint32_t );
static void MaskToShift ( int *, int *, u32 ); static void MaskToShift ( int *, int *, uint32_t );
static void InitWindowSize ( vout_thread_t *, int *, int * ); static void InitWindowSize ( vout_thread_t *, int *, int * );
/***************************************************************************** /*****************************************************************************
...@@ -803,7 +803,7 @@ static int ReduceHeight( int i_ratio ) ...@@ -803,7 +803,7 @@ static int ReduceHeight( int i_ratio )
* This functions is used by MaskToShift, to get a bit index from a binary * This functions is used by MaskToShift, to get a bit index from a binary
* value. * value.
*****************************************************************************/ *****************************************************************************/
static int BinaryLog(u32 i) static int BinaryLog( uint32_t i )
{ {
int i_log = 0; int i_log = 0;
...@@ -823,9 +823,9 @@ static int BinaryLog(u32 i) ...@@ -823,9 +823,9 @@ static int BinaryLog(u32 i)
***************************************************************************** *****************************************************************************
* This function is used for obtaining color shifts from masks. * This function is used for obtaining color shifts from masks.
*****************************************************************************/ *****************************************************************************/
static void MaskToShift( int *pi_left, int *pi_right, u32 i_mask ) static void MaskToShift( int *pi_left, int *pi_right, uint32_t i_mask )
{ {
u32 i_low, i_high; /* lower hand higher bits of the mask */ uint32_t i_low, i_high; /* lower hand higher bits of the mask */
if( !i_mask ) if( !i_mask )
{ {
...@@ -834,7 +834,7 @@ static void MaskToShift( int *pi_left, int *pi_right, u32 i_mask ) ...@@ -834,7 +834,7 @@ static void MaskToShift( int *pi_left, int *pi_right, u32 i_mask )
} }
/* Get bits */ /* Get bits */
i_low = i_mask & (- i_mask); /* lower bit of the mask */ i_low = i_mask & (- (int32_t)i_mask); /* lower bit of the mask */
i_high = i_mask + i_low; /* higher bit of the mask */ i_high = i_mask + i_low; /* higher bit of the mask */
/* Transform bits into an index */ /* Transform bits into an index */
...@@ -862,41 +862,41 @@ static void InitWindowSize( vout_thread_t *p_vout, int *pi_width, ...@@ -862,41 +862,41 @@ static void InitWindowSize( vout_thread_t *p_vout, int *pi_width,
i_width = config_GetInt( p_vout, "width" ); i_width = config_GetInt( p_vout, "width" );
i_height = config_GetInt( p_vout, "height" ); i_height = config_GetInt( p_vout, "height" );
ll_zoom = FP_FACTOR * config_GetFloat( p_vout, "zoom" ); ll_zoom = (uint64_t)( FP_FACTOR * config_GetFloat( p_vout, "zoom" ) );
if( (i_width >= 0) && (i_height >= 0)) if( (i_width >= 0) && (i_height >= 0))
{ {
*pi_width = i_width * ll_zoom / FP_FACTOR; *pi_width = (int)( i_width * ll_zoom / FP_FACTOR );
*pi_height = i_height * ll_zoom / FP_FACTOR; *pi_height = (int)( i_height * ll_zoom / FP_FACTOR );
return; return;
} }
else if( i_width >= 0 ) else if( i_width >= 0 )
{ {
*pi_width = i_width * ll_zoom / FP_FACTOR; *pi_width = (int)( i_width * ll_zoom / FP_FACTOR );
*pi_height = i_width * ll_zoom * VOUT_ASPECT_FACTOR / *pi_height = (int)( i_width * ll_zoom * VOUT_ASPECT_FACTOR /
p_vout->render.i_aspect / FP_FACTOR; p_vout->render.i_aspect / FP_FACTOR );
return; return;
} }
else if( i_height >= 0 ) else if( i_height >= 0 )
{ {
*pi_height = i_height * ll_zoom / FP_FACTOR; *pi_height = (int)( i_height * ll_zoom / FP_FACTOR );
*pi_width = i_height * ll_zoom * p_vout->render.i_aspect / *pi_width = (int)( i_height * ll_zoom * p_vout->render.i_aspect /
VOUT_ASPECT_FACTOR / FP_FACTOR; VOUT_ASPECT_FACTOR / FP_FACTOR );
return; return;
} }
if( p_vout->render.i_height * p_vout->render.i_aspect if( p_vout->render.i_height * p_vout->render.i_aspect
>= p_vout->render.i_width * VOUT_ASPECT_FACTOR ) >= p_vout->render.i_width * VOUT_ASPECT_FACTOR )
{ {
*pi_width = p_vout->render.i_height * ll_zoom *pi_width = (int)( p_vout->render.i_height * ll_zoom
* p_vout->render.i_aspect / VOUT_ASPECT_FACTOR / FP_FACTOR; * p_vout->render.i_aspect / VOUT_ASPECT_FACTOR / FP_FACTOR );
*pi_height = p_vout->render.i_height * ll_zoom / FP_FACTOR; *pi_height = (int)( p_vout->render.i_height * ll_zoom / FP_FACTOR );
} }
else else
{ {
*pi_width = p_vout->render.i_width * ll_zoom / FP_FACTOR; *pi_width = (int)( p_vout->render.i_width * ll_zoom / FP_FACTOR );
*pi_height = p_vout->render.i_width * ll_zoom *pi_height = (int)( p_vout->render.i_width * ll_zoom
* VOUT_ASPECT_FACTOR / p_vout->render.i_aspect / FP_FACTOR; * VOUT_ASPECT_FACTOR / p_vout->render.i_aspect / FP_FACTOR );
} }
#undef FP_FACTOR #undef FP_FACTOR
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* video_text.c : text manipulation functions * video_text.c : text manipulation functions
***************************************************************************** *****************************************************************************
* Copyright (C) 1999-2001 VideoLAN * Copyright (C) 1999-2001 VideoLAN
* $Id: video_text.c,v 1.39 2002/11/10 23:41:54 sam Exp $ * $Id: video_text.c,v 1.40 2002/11/13 20:51:05 sam Exp $
* *
* Authors: Vincent Seguin <seguin@via.ecp.fr> * Authors: Vincent Seguin <seguin@via.ecp.fr>
* Samuel Hocevar <sam@zoy.org> * Samuel Hocevar <sam@zoy.org>
...@@ -440,13 +440,13 @@ void vout_TextSize( vout_font_t *p_font, int i_style, const char *psz_text, int ...@@ -440,13 +440,13 @@ void vout_TextSize( vout_font_t *p_font, int i_style, const char *psz_text, int
void vout_Print( vout_font_t *p_font, byte_t *p_pic, int i_bytes_per_pixel, int i_bytes_per_line, void vout_Print( vout_font_t *p_font, byte_t *p_pic, int i_bytes_per_pixel, int i_bytes_per_line,
u32 i_char_color, u32 i_border_color, u32 i_bg_color, int i_style, const char *psz_text, int i_percent) u32 i_char_color, u32 i_border_color, u32 i_bg_color, int i_style, const char *psz_text, int i_percent)
{ {
byte_t *p_char, *p_border; /* character and border mask data */ byte_t *p_char, *p_border; /* character and border mask data */
int i_char_mask, i_border_mask, i_bg_mask; /* masks */ int i_char_mask, i_border_mask, i_bg_mask; /* masks */
int i_line; /* current line in character */ int i_line; /* current line in character */
int i_byte; /* current byte in character */ int i_byte; /* current byte in character */
int i_interspacing; /* offset between two chars */ int i_interspacing; /* offset between two chars */
int i_font_bytes_per_line, i_font_height; /* font properties */ int i_font_bytes_per_line, i_font_height; /* font properties */
int i_position, i_end; /* current position */ unsigned int i_position, i_end; /* current position */
vout_put_byte_t *p_PutByte; /* PutByte function */ vout_put_byte_t *p_PutByte; /* PutByte function */
/* If no font was loaded, do nothing */ /* If no font was loaded, do nothing */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment