diff options
| author | Stefan Boberg <[email protected]> | 2024-12-05 12:44:27 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2024-12-05 12:44:27 +0100 |
| commit | 7ca7e683224918808a3a0dd8cd0a6953cc79cb4c (patch) | |
| tree | a2d92895843e37292945e673642a338341f3a036 /.gitignore | |
| parent | enable LTO / optimize for speed (#256) (diff) | |
| download | zen-7ca7e683224918808a3a0dd8cd0a6953cc79cb4c.tar.xz zen-7ca7e683224918808a3a0dd8cd0a6953cc79cb4c.zip | |
Unity build fixes (#253)
some fixes to make everything build using unity build mode. Mostly moved code from anonymous namespaces into local impl namespace to avoid ambiguity in name resolution.
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 103 |
1 files changed, 1 insertions, 102 deletions
diff --git a/.gitignore b/.gitignore index d41ddc59f..b4d5d8417 100644 --- a/.gitignore +++ b/.gitignore @@ -14,9 +14,7 @@ # Build results [Dd]ebug/ -[Dd]ebugPublic/ [Rr]elease/ -[Rr]eleases/ x64/ x86/ build/ @@ -37,34 +35,6 @@ vs20*/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ -# Visual Studio 2017 auto generated files -Generated\ Files/ - -# MSTest test Results -[Tt]est[Rr]esult*/ -[Bb]uild[Ll]og.* - -# NUNIT -*.VisualState.xml -TestResult.xml - -# Build Results of an ATL Project -[Dd]ebugPS/ -[Rr]eleasePS/ -dlldata.c - -# Benchmark Results -BenchmarkDotNet.Artifacts/ - -# .NET Core -project.lock.json -project.fragment.lock.json -artifacts/ -**/Properties/launchSettings.json - -# StyleCop -StyleCopReport.xml - # Files built by Visual Studio *_i.c *_p.c @@ -93,9 +63,6 @@ StyleCopReport.xml *.svclog *.scc -# Chutzpah Test files -_Chutzpah* - # Visual C++ cache files ipch/ *.aps @@ -116,83 +83,15 @@ ipch/ # Visual Studio Trace Files *.e2e -# TFS 2012 Local Workspace -$tf/ - -# Guidance Automation Toolkit -*.gpState - -# ReSharper is a .NET coding add-in -_ReSharper*/ -*.[Rr]e[Ss]harper -*.DotSettings.user - -# JustCode is a .NET coding add-in -.JustCode - -# TeamCity is a build add-in -_TeamCity* - -# DotCover is a Code Coverage Tool -*.dotCover - -# AxoCover is a Code Coverage Tool -.axoCover/* -!.axoCover/settings.json - -# Visual Studio code coverage results -*.coverage -*.coveragexml - -# NCrunch -_NCrunch_* -.*crunch*.local.xml -nCrunchTemp_* - -# MightyMoose -*.mm.* -AutoTest.Net/ - # Web workbench (sass) .sass-cache/ -# Installshield output folder -[Ee]xpress/ - - - - -# Windows Store app package directories and files -AppPackages/ -BundleArtifacts/ -Package.StoreAssociation.xml -_pkginfo.txt -*.appx - # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ - - - -# Backup & report files from converting an old project file -# to a newer Visual Studio version. Backup files are not needed, -# because we have git ;-) -_UpgradeReport_Files/ -Backup*/ -UpgradeLog*.XML -UpgradeLog*.htm -ServiceFabricBackup/ -*.rptproj.bak - - -# Python Tools for Visual Studio (PTVS) -__pycache__/ -*.pyc - /vcpkg_installed .data/ .minio_data/ @@ -220,4 +119,4 @@ CMake* .cache/ # Ue tool chain temp directory -.tmp-ue-toolchain/
\ No newline at end of file +.tmp-ue-toolchain/ |