forked from assimp/assimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updated zip udated zip from version 1.15 to version 3.0.2 * Check for double defined macro * Update miniz.h * Update zip.c * Update zip.c --------- Co-authored-by: Kim Kulling <[email protected]>
- Loading branch information
1 parent
329fee2
commit 83d7216
Showing
24 changed files
with
13,764 additions
and
6,259 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.h linguist-language=C |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/build/ | ||
/test/build/ | ||
/xcodeproj/ | ||
/infer-out/ | ||
.vscode/ | ||
Testing/ | ||
|
||
# Object files | ||
*.o | ||
*.ko | ||
*.obj | ||
*.elf | ||
|
||
# Precompiled Headers | ||
*.gch | ||
*.pch | ||
|
||
# Libraries | ||
*.lib | ||
*.a | ||
*.la | ||
*.lo | ||
|
||
# Shared objects (inc. Windows DLLs) | ||
*.dll | ||
*.so | ||
*.so.* | ||
*.dylib | ||
*.suo | ||
|
||
# Executables | ||
*.exe | ||
*.out | ||
*.app | ||
*.i*86 | ||
*.x86_64 | ||
*.hex | ||
|
||
# Temporary | ||
*.swp | ||
.DS_Store | ||
|
||
# CMake | ||
CMakeScripts | ||
*.cmake | ||
|
||
# Xcode | ||
*.build | ||
*.xcodeproj | ||
zip.sln | ||
zip.vcxproj.filters | ||
zip.vcxproj | ||
ALL_BUILD.vcxproj.filters | ||
ALL_BUILD.vcxproj | ||
CMakeFiles/ | ||
zip.dir/ | ||
test/test.exe.vcxproj.filters | ||
test/test.exe.vcxproj | ||
test/test.exe.dir/ | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Contribution Rules/Coding Standards | ||
No need to throw away your coding style, just do your best to follow default clang-format style. | ||
Apply `clang-format` to the source files before commit: | ||
```sh | ||
for file in $(git ls-files | \grep -E '\.(c|h)$' | \grep -v -- '#') | ||
do | ||
clang-format -i $file | ||
done | ||
``` |
Oops, something went wrong.