+++ /dev/null
-#!/bin/sh
-
-host="gmqcc.qc.to"
-location="$host/files"
-list="$location/files"
-hashes="$location/hashes"
-options="$location/options"
-
-#download required things
-download_list=$(wget -qO- ${list})
-download_hashes=$(wget -qO- ${hashes})
-download_options=$(wget -qO- ${options})
-
-download() {
- local old="$PWD"
- cd ~/.gmqcc/testsuite
- echo "$download_list" | while read -r line
- do
- echo "downloading $line ..."
- wget -q "${location}/$line"
- done
-
- echo "$download_hashes" > ~/.gmqcc/testsuite/hashes
- echo "$download_options" > ~/.gmqcc/testsuite/options
-
- cd "$old"
-}
-
-if [ -z "$download_list" -o -z "$download_hashes" -o -z "$download_options" ]; then
- echo "failed to download required information to check projects."
-
- if [ "$(ping -q -c1 "${host}")" ]; then
- echo "host ${host} seems to be up but missing required files."
- echo "please file bug report at: github.com/graphitemaster/gmqcc"
- else
- echo "host ${host} seems to be down, please try again later."
- fi
-
- echo "aborting"
- exit 1
-fi
-
-# we have existing contents around
-if [ -f ~/.gmqcc/testsuite/hashes -a -f ~/.gmqcc/testsuite/options ]; then
- echo "$download_hashes" > /tmp/gmqcc_download_hashes
- echo "$download_options" > /tmp/gmqcc_download_options
-
- diff -u ~/.gmqcc/testsuite/hashes /tmp/gmqcc_download_hashes > /dev/null
- check_hash=$?
- diff -u ~/.gmqcc/testsuite/options /tmp/gmqcc_download_options > /dev/null
- check_opts=$?
-
- if [ $check_hash -ne 0 -o $check_opts -ne 0 ]; then
- echo "consistency errors in hashes (possible update), obtaining fresh contents"
- rm -rf ~/.gmqcc/testsuite/projects
- rm ~/.gmqcc/testsuite/*.zip
-
- download
- fi
-else
- # do we even have the directory
- echo "preparing project testsuite for the first time"
- if [ ! -d ~/.gmqcc/testsuite ]; then
- mkdir -p ~/.gmqcc/testsuite
- fi
-
- download
-fi
-
-if [ ! -d ~/.gmqcc/testsuite/projects ]; then
- mkdir -p ~/.gmqcc/testsuite/projects
- old="$PWD"
- cd ~/.gmqcc/testsuite/projects
- echo "$(ls ../ | grep -v '^hashes$' | grep -v '^projects$' | grep -v '^options$')" | while read -r line
- do
- echo "extracting project $line"
- mkdir "$(echo "$line" | sed 's/\(.*\)\..*/\1/')"
- unzip -qq "../$line" -d $(echo "$line" | sed 's/\(.*\)\..*/\1/')
- done
- cd "$old"
-else
- echo "previous state exists, using it"
-fi
-
-# compile projects in those directories
-gmqcc_bin="gmqcc"
-env -i type gmqcc 1>/dev/null 2>&1 || {
- if [ -f ../gmqcc ]; then
- echo "previous build of gmqcc exists, using it"
- gmqcc_bin="$(pwd)/../gmqcc"
- elif [ -f ./gmqcc ]; then
- echo "previous build of gmqcc exists, using it"
- gmqcc_bin="$(pwd)/gmqcc"
- else
- echo "gmqcc not installed and previous build doesn't exist"
- echo "please run make, or make install"
- exit 1
- fi
-}
-
-end_dir="$PWD"
-cd ~/.gmqcc/testsuite/projects
-start="$PWD"
-find . -maxdepth 1 -mindepth 1 -type d | while read -r line
-do
- line="${line#./}"
- echo -n "compiling $line... "
- cd "${start}/${line}"
-
- # does the project have multiple subprojects?
- if [ -f dirs ]; then
- echo ""
- cat dirs | while read -r dir
- do
- # change to subproject
- echo -n " compiling $dir... "
- old="$PWD"
- cd "$dir"
- cmd="$(cat ../../../options | grep "$line:" | awk '{print substr($0, index($0, $2))}')"
- "$gmqcc_bin" $cmd > /dev/null 2>&1
- if [ $? -ne 0 ]; then
- echo "error"
- else
- echo "success"
- fi
- cd "$old"
- done
- # nope only one project
- else
- cmd="$(cat ../../options | grep "$line:" | awk '{print substr($0, index($0, $2))}')"
- "$gmqcc_bin" $cmd > /dev/null 2>&1
- if [ $? -ne 0 ]; then
- echo "error"
- else
- echo "success"
- fi
- fi
-done
-
-cd "$end_dir"
+++ /dev/null
-#!/bin/sh
-
-if [ ! -d qcsrc ]; then
- echo "failed to find qcsrc directory in $(pwd), please run this script"
- echo "from nexuiz data directory"
- exit 1
-else
- # ensure this is actually a xonotic repo
- pushd qcsrc > /dev/null
- if [ ! -d client -o ! -d common -o ! -d menu -o ! -d server -o ! -d warpzonelib ]; then
- echo "this doesnt look like a nexuiz source tree, aborting"
- popd > /dev/null
- exit 1
- fi
-fi
-
-echo -n "removing redundant files ..."
-rm -f nexuiz.ncb
-rm -f nexuiz.sln
-rm -f nexuiz.suo
-rm -f nexuiz.vcproj
-rm -f nexuiz.vcproj.user
-echo "complete"
-
-echo -n "creating projects ..."
-echo "client" > dirs
-echo "server" >> dirs
-echo "menu" >> dirs
-
-echo "complete"
-
-echo -n "creating zip archive ..."
-zip -r -9 ../nexuiz.zip * > /dev/null
-echo "complete"
-
-popd > /dev/null
-echo "finished!"
+++ /dev/null
-#!/bin/sh
-
-if [ ! -d qcsrc ]; then
- echo "failed to find qcsrc directory in $(pwd), please run this script"
- echo "from xonotic-data.pk3dir"
- exit 1
-else
- # ensure this is actually a xonotic repo
- pushd qcsrc > /dev/null
- if [ ! -d client -o ! -d common -o ! -d dpdefs -o ! -d menu -o ! -d server -o ! -d warpzonelib ]; then
- echo "this doesnt look like a xonotic source tree, aborting"
- popd > /dev/null
- exit 1
- fi
-fi
-
-# force reset and update
-git rev-parse
-if [ $? -ne 0 ]; then
- echo "not a git directory, continuing without rebase"
-else
- echo -n "resetting git state and updating ... "
- git reset --hard HEAD > /dev/null 2>&1
- git pull > /dev/null 2>&1
- echo "complete"
-fi
-
-echo -n "generate precache for csqc ..."
-./collect-precache.sh > /dev/null 2>&1
-echo "complete"
-
-echo -n "removing redundant files ..."
-rm -f Makefile
-rm -f autocvarize-update.sh
-rm -f autocvarize.pl
-rm -f collect-precache.sh
-rm -f fteqcc-bugs.qc
-rm -f i18n-badwords.txt
-rm -f i18n-guide.txt
-echo "complete"
-
-echo -n "creating projects ..."
-echo "client" > dirs
-echo "server" >> dirs
-echo "menu" >> dirs
-
-echo "complete"
-
-echo -n "creating zip archive ..."
-zip -r -9 ../xonotic.zip * > /dev/null
-echo "complete"
-
-popd > /dev/null
-echo "finished!"
+++ /dev/null
-\r
-Microsoft Visual Studio Solution File, Format Version 11.00\r
-# Visual Studio 2010\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "gmqcc", "gmqcc\gmqcc.vcxproj", "{A6BD74E1-31BB-4D00-A9E0-09FF1BC76ED6}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "qcvm", "qcvm\qcvm.vcxproj", "{DC980E20-C7A8-4112-A517-631DBDA788E7}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "pak", "pak\pak.vcxproj", "{A6F66BE9-57EF-4E93-AA9D-6E0C8B0990AD}"\r
-EndProject\r
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "testsuite", "testsuite\testsuite.vcxproj", "{7E2839D9-9C1A-4489-9FF9-FDC854EBED3D}"\r
-EndProject\r
-Global\r
- GlobalSection(SolutionConfigurationPlatforms) = preSolution\r
- Debug|Win32 = Debug|Win32\r
- Release|Win32 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(ProjectConfigurationPlatforms) = postSolution\r
- {A6BD74E1-31BB-4D00-A9E0-09FF1BC76ED6}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {A6BD74E1-31BB-4D00-A9E0-09FF1BC76ED6}.Debug|Win32.Build.0 = Debug|Win32\r
- {A6BD74E1-31BB-4D00-A9E0-09FF1BC76ED6}.Release|Win32.ActiveCfg = Release|Win32\r
- {A6BD74E1-31BB-4D00-A9E0-09FF1BC76ED6}.Release|Win32.Build.0 = Release|Win32\r
- {DC980E20-C7A8-4112-A517-631DBDA788E7}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {DC980E20-C7A8-4112-A517-631DBDA788E7}.Debug|Win32.Build.0 = Debug|Win32\r
- {DC980E20-C7A8-4112-A517-631DBDA788E7}.Release|Win32.ActiveCfg = Release|Win32\r
- {DC980E20-C7A8-4112-A517-631DBDA788E7}.Release|Win32.Build.0 = Release|Win32\r
- {A6F66BE9-57EF-4E93-AA9D-6E0C8B0990AD}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {A6F66BE9-57EF-4E93-AA9D-6E0C8B0990AD}.Debug|Win32.Build.0 = Debug|Win32\r
- {A6F66BE9-57EF-4E93-AA9D-6E0C8B0990AD}.Release|Win32.ActiveCfg = Release|Win32\r
- {A6F66BE9-57EF-4E93-AA9D-6E0C8B0990AD}.Release|Win32.Build.0 = Release|Win32\r
- {7E2839D9-9C1A-4489-9FF9-FDC854EBED3D}.Debug|Win32.ActiveCfg = Debug|Win32\r
- {7E2839D9-9C1A-4489-9FF9-FDC854EBED3D}.Debug|Win32.Build.0 = Debug|Win32\r
- {7E2839D9-9C1A-4489-9FF9-FDC854EBED3D}.Release|Win32.ActiveCfg = Release|Win32\r
- {7E2839D9-9C1A-4489-9FF9-FDC854EBED3D}.Release|Win32.Build.0 = Release|Win32\r
- EndGlobalSection\r
- GlobalSection(SolutionProperties) = preSolution\r
- HideSolutionNode = FALSE\r
- EndGlobalSection\r
-EndGlobal\r
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup Label="ProjectConfigurations">\r
- <ProjectConfiguration Include="Debug|Win32">\r
- <Configuration>Debug</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- <ProjectConfiguration Include="Release|Win32">\r
- <Configuration>Release</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClCompile Include="..\..\ast.c" />\r
- <ClCompile Include="..\..\code.c" />\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\correct.c" />\r
- <ClCompile Include="..\..\fold.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\ftepp.c" />\r
- <ClCompile Include="..\..\intrin.c" />\r
- <ClCompile Include="..\..\ir.c" />\r
- <ClCompile Include="..\..\lexer.c" />\r
- <ClCompile Include="..\..\main.c" />\r
- <ClCompile Include="..\..\opts.c" />\r
- <ClCompile Include="..\..\parser.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\utf8.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\ast.h" />\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- <ClInclude Include="..\..\ir.h" />\r
- <ClInclude Include="..\..\lexer.h" />\r
- <ClInclude Include="..\..\parser.h" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <None Include="..\..\opts.def" />\r
- </ItemGroup>\r
- <PropertyGroup Label="Globals">\r
- <ProjectGuid>{A6BD74E1-31BB-4D00-A9E0-09FF1BC76ED6}</ProjectGuid>\r
- <RootNamespace>gmqcc</RootNamespace>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>true</UseDebugLibraries>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>false</UseDebugLibraries>\r
- <WholeProgramOptimization>true</WholeProgramOptimization>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />\r
- <ImportGroup Label="ExtensionSettings">\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <PropertyGroup Label="UserMacros" />\r
- <PropertyGroup />\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>Disabled</Optimization>\r
- <PreprocessorDefinitions>NVALGRIND;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>MaxSpeed</Optimization>\r
- <FunctionLevelLinking>true</FunctionLevelLinking>\r
- <IntrinsicFunctions>true</IntrinsicFunctions>\r
- <PreprocessorDefinitions>NVALGRIND;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- <EnableCOMDATFolding>true</EnableCOMDATFolding>\r
- <OptimizeReferences>true</OptimizeReferences>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />\r
- <ImportGroup Label="ExtensionTargets">\r
- </ImportGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup>\r
- <ClCompile Include="..\..\ast.c" />\r
- <ClCompile Include="..\..\code.c" />\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\correct.c" />\r
- <ClCompile Include="..\..\fold.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\ftepp.c" />\r
- <ClCompile Include="..\..\intrin.c" />\r
- <ClCompile Include="..\..\ir.c" />\r
- <ClCompile Include="..\..\lexer.c" />\r
- <ClCompile Include="..\..\main.c" />\r
- <ClCompile Include="..\..\opts.c" />\r
- <ClCompile Include="..\..\parser.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\utf8.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\ast.h" />\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- <ClInclude Include="..\..\ir.h" />\r
- <ClInclude Include="..\..\lexer.h" />\r
- <ClInclude Include="..\..\parser.h" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <None Include="..\..\opts.def" />\r
- </ItemGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup Label="ProjectConfigurations">\r
- <ProjectConfiguration Include="Debug|Win32">\r
- <Configuration>Debug</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- <ProjectConfiguration Include="Release|Win32">\r
- <Configuration>Release</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\opts.c" />\r
- <ClCompile Include="..\..\pak.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <None Include="..\..\opts.def" />\r
- </ItemGroup>\r
- <PropertyGroup Label="Globals">\r
- <ProjectGuid>{A6F66BE9-57EF-4E93-AA9D-6E0C8B0990AD}</ProjectGuid>\r
- <RootNamespace>pak</RootNamespace>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>true</UseDebugLibraries>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>false</UseDebugLibraries>\r
- <WholeProgramOptimization>true</WholeProgramOptimization>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />\r
- <ImportGroup Label="ExtensionSettings">\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <PropertyGroup Label="UserMacros" />\r
- <PropertyGroup />\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>Disabled</Optimization>\r
- <PreprocessorDefinitions>NVALGRIND;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>MaxSpeed</Optimization>\r
- <FunctionLevelLinking>true</FunctionLevelLinking>\r
- <IntrinsicFunctions>true</IntrinsicFunctions>\r
- <PreprocessorDefinitions>NVALGRIND;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- <EnableCOMDATFolding>true</EnableCOMDATFolding>\r
- <OptimizeReferences>true</OptimizeReferences>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />\r
- <ImportGroup Label="ExtensionTargets">\r
- </ImportGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup>\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\opts.c" />\r
- <ClCompile Include="..\..\pak.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <None Include="..\..\opts.def" />\r
- </ItemGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup Label="ProjectConfigurations">\r
- <ProjectConfiguration Include="Debug|Win32">\r
- <Configuration>Debug</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- <ProjectConfiguration Include="Release|Win32">\r
- <Configuration>Release</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\exec.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- </ItemGroup>\r
- <PropertyGroup Label="Globals">\r
- <ProjectGuid>{DC980E20-C7A8-4112-A517-631DBDA788E7}</ProjectGuid>\r
- <RootNamespace>qcvm</RootNamespace>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>true</UseDebugLibraries>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>false</UseDebugLibraries>\r
- <WholeProgramOptimization>true</WholeProgramOptimization>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />\r
- <ImportGroup Label="ExtensionSettings">\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <PropertyGroup Label="UserMacros" />\r
- <PropertyGroup />\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>Disabled</Optimization>\r
- <PreprocessorDefinitions>NVALGRIND;QCVM_EXECUTOR;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>MaxSpeed</Optimization>\r
- <FunctionLevelLinking>true</FunctionLevelLinking>\r
- <IntrinsicFunctions>true</IntrinsicFunctions>\r
- <PreprocessorDefinitions>NVALGRIND;QCVM_EXECUTOR;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- <EnableCOMDATFolding>true</EnableCOMDATFolding>\r
- <OptimizeReferences>true</OptimizeReferences>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />\r
- <ImportGroup Label="ExtensionTargets">\r
- </ImportGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup>\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\exec.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- </ItemGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup Label="ProjectConfigurations">\r
- <ProjectConfiguration Include="Debug|Win32">\r
- <Configuration>Debug</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- <ProjectConfiguration Include="Release|Win32">\r
- <Configuration>Release</Configuration>\r
- <Platform>Win32</Platform>\r
- </ProjectConfiguration>\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClCompile Include="..\..\conout.c" />\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\opts.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\test.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <None Include="..\..\opts.def" />\r
- </ItemGroup>\r
- <PropertyGroup Label="Globals">\r
- <ProjectGuid>{7E2839D9-9C1A-4489-9FF9-FDC854EBED3D}</ProjectGuid>\r
- <RootNamespace>testsuite</RootNamespace>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>true</UseDebugLibraries>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">\r
- <ConfigurationType>Application</ConfigurationType>\r
- <UseDebugLibraries>false</UseDebugLibraries>\r
- <WholeProgramOptimization>true</WholeProgramOptimization>\r
- <CharacterSet>MultiByte</CharacterSet>\r
- </PropertyGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />\r
- <ImportGroup Label="ExtensionSettings">\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />\r
- </ImportGroup>\r
- <PropertyGroup Label="UserMacros" />\r
- <PropertyGroup />\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>Disabled</Optimization>\r
- <PreprocessorDefinitions>NVALGRIND;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">\r
- <ClCompile>\r
- <WarningLevel>Level3</WarningLevel>\r
- <Optimization>MaxSpeed</Optimization>\r
- <FunctionLevelLinking>true</FunctionLevelLinking>\r
- <IntrinsicFunctions>true</IntrinsicFunctions>\r
- <PreprocessorDefinitions>NVALGRIND;%(PreprocessorDefinitions)</PreprocessorDefinitions>\r
- </ClCompile>\r
- <Link>\r
- <GenerateDebugInformation>true</GenerateDebugInformation>\r
- <EnableCOMDATFolding>true</EnableCOMDATFolding>\r
- <OptimizeReferences>true</OptimizeReferences>\r
- </Link>\r
- </ItemDefinitionGroup>\r
- <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />\r
- <ImportGroup Label="ExtensionTargets">\r
- </ImportGroup>\r
-</Project>
\ No newline at end of file
+++ /dev/null
-<?xml version="1.0" encoding="utf-8"?>\r
-<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">\r
- <ItemGroup>\r
- <ClCompile Include="..\..\fs.c" />\r
- <ClCompile Include="..\..\opts.c" />\r
- <ClCompile Include="..\..\stat.c" />\r
- <ClCompile Include="..\..\test.c" />\r
- <ClCompile Include="..\..\util.c" />\r
- <ClCompile Include="..\..\conout.c" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <ClInclude Include="..\..\gmqcc.h" />\r
- </ItemGroup>\r
- <ItemGroup>\r
- <None Include="..\..\opts.def" />\r
- </ItemGroup>\r
-</Project>
\ No newline at end of file