From 2a9fd559ee8461067c64ed0df5882b93ce8bca98 Mon Sep 17 00:00:00 2001 From: Markus Multrus Date: Thu, 23 Jun 2022 07:55:20 +0200 Subject: [PATCH 1/4] initial version --- .gitignore | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000000..a85747a151 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +# .gitignore for IVAS public collaboration Git repository + +# Compiler output Unix +IVAS_cod +IVAS_dec +obj/ +*.a +*.o +*.P + +# Compiler output VS2017 +IVAS_cod.exe +IVAS_dec.exe +Workspace_msvc/.vs/ +Workspace_msvc/Debug_*/ +Workspace_msvc/Release_*/ +*.obj +*.pdb + +# Unittests +scripts/ivas_pytests/tests/unit_tests/crend/IVAS_crend_unit_test +scripts/ivas_pytests/tests/unit_tests/crend/IVAS_crend_unit_test.exe +scripts/ivas_pytests/tests/unit_tests/crend/Debug_*/ +scripts/ivas_pytests/tests/unit_tests/crend/Release_*/ + +# General/scripts +*.log +scripts/c-code_instrument/ +scripts/ifdef_instrument.list + +# Python files that pop up when running scripts +__pycache__/ +*.py[cod] +*$py.class -- GitLab From 96b08d377ec43ccb88cc56e8fee953a29e406045 Mon Sep 17 00:00:00 2001 From: Markus Multrus Date: Thu, 23 Jun 2022 09:40:44 +0200 Subject: [PATCH 2/4] updates to .gitignore --- .gitignore | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index a85747a151..f0a247b3de 100644 --- a/.gitignore +++ b/.gitignore @@ -11,9 +11,10 @@ obj/ # Compiler output VS2017 IVAS_cod.exe IVAS_dec.exe -Workspace_msvc/.vs/ -Workspace_msvc/Debug_*/ -Workspace_msvc/Release_*/ +*.user +.vs/ +Debug_*/ +Release_*/ *.obj *.pdb @@ -23,10 +24,23 @@ scripts/ivas_pytests/tests/unit_tests/crend/IVAS_crend_unit_test.exe scripts/ivas_pytests/tests/unit_tests/crend/Debug_*/ scripts/ivas_pytests/tests/unit_tests/crend/Release_*/ +# Standalone TD object renderer +scripts/td_object_renderer/object_renderer_standalone/renderer_standalone +scripts/td_object_renderer/object_renderer_standalone/renderer_standalone.exe + +# Prerenderer +scripts/prerenderer/IVAS_prerenderer +scripts/prerenderer/IVAS_prerenderer.exe + # General/scripts +.DS_Store +.vscode *.log +*.bak scripts/c-code_instrument/ scripts/ifdef_instrument.list +scripts/ref/ +scripts/test/ # Python files that pop up when running scripts __pycache__/ -- GitLab From 05fa9a1a017006e2f48a2f12685e5cbef9de990d Mon Sep 17 00:00:00 2001 From: Stefan Doehla Date: Thu, 23 Jun 2022 09:07:16 +0200 Subject: [PATCH 3/4] .gitignore - add default CMake build dir as in Getting-started section in Readme/Wiki --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index f0a247b3de..ab49e154f4 100644 --- a/.gitignore +++ b/.gitignore @@ -8,6 +8,9 @@ obj/ *.o *.P +# default CMake +build/**/* + # Compiler output VS2017 IVAS_cod.exe IVAS_dec.exe -- GitLab From 2ff0e35a452ed0d89e00b69aad3cf912d1156e60 Mon Sep 17 00:00:00 2001 From: pihlajakuja Date: Thu, 23 Jun 2022 12:50:58 +0000 Subject: [PATCH 4/4] add scripts/self_test_summary.txt --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index ab49e154f4..eaf8b0cb7b 100644 --- a/.gitignore +++ b/.gitignore @@ -44,6 +44,7 @@ scripts/c-code_instrument/ scripts/ifdef_instrument.list scripts/ref/ scripts/test/ +scripts/self_test_summary.txt # Python files that pop up when running scripts __pycache__/ -- GitLab