Skip to content

Instantly share code, notes, and snippets.

@jedie
Created June 16, 2015 12:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jedie/f5ea72c35ea6f6aa8183 to your computer and use it in GitHub Desktop.
Save jedie/f5ea72c35ea6f6aa8183 to your computer and use it in GitHub Desktop.
~/emsdk_portable/lzham_codec $ tree
.
├── build
│   ├── CMakeCache.txt
│   ├── CMakeFiles
│   │   ├── 2.8.12.2
│   │   │   ├── CMakeCCompiler.cmake
│   │   │   ├── CMakeCXXCompiler.cmake
│   │   │   ├── CMakeDetermineCompilerABI_C.bin
│   │   │   ├── CMakeDetermineCompilerABI_CXX.bin
│   │   │   ├── CMakeSystem.cmake
│   │   │   ├── CompilerIdC
│   │   │   │   ├── a.out
│   │   │   │   └── CMakeCCompilerId.c
│   │   │   └── CompilerIdCXX
│   │   │   ├── a.out
│   │   │   └── CMakeCXXCompilerId.cpp
│   │   ├── cmake.check_cache
│   │   ├── CMakeDirectoryInformation.cmake
│   │   ├── CMakeOutput.log
│   │   ├── CMakeTmp
│   │   ├── Makefile2
│   │   ├── Makefile.cmake
│   │   ├── progress.marks
│   │   └── TargetDirectories.txt
│   ├── cmake_install.cmake
│   ├── lzhamcomp
│   │   ├── CMakeFiles
│   │   │   ├── CMakeDirectoryInformation.cmake
│   │   │   ├── lzhamcomp.dir
│   │   │   │   ├── build.make
│   │   │   │   ├── cmake_clean.cmake
│   │   │   │   ├── CXX.includecache
│   │   │   │   ├── DependInfo.cmake
│   │   │   │   ├── depend.internal
│   │   │   │   ├── depend.make
│   │   │   │   ├── flags.make
│   │   │   │   ├── link.txt
│   │   │   │   ├── lzham_lzbase.cpp.o
│   │   │   │   ├── lzham_lzcomp.cpp.o
│   │   │   │   ├── lzham_lzcomp_internal.cpp.o
│   │   │   │   ├── lzham_lzcomp_state.cpp.o
│   │   │   │   ├── lzham_match_accel.cpp.o
│   │   │   │   ├── lzham_pthreads_threading.cpp.o
│   │   │   │   └── progress.make
│   │   │   └── progress.marks
│   │   ├── cmake_install.cmake
│   │   ├── liblzhamcomp.so
│   │   └── Makefile
│   ├── lzhamdecomp
│   │   ├── CMakeFiles
│   │   │   ├── CMakeDirectoryInformation.cmake
│   │   │   ├── lzhamdecomp.dir
│   │   │   │   ├── build.make
│   │   │   │   ├── cmake_clean.cmake
│   │   │   │   ├── CXX.includecache
│   │   │   │   ├── DependInfo.cmake
│   │   │   │   ├── depend.internal
│   │   │   │   ├── depend.make
│   │   │   │   ├── flags.make
│   │   │   │   ├── link.txt
│   │   │   │   ├── lzham_assert.cpp.o
│   │   │   │   ├── lzham_checksum.cpp.o
│   │   │   │   ├── lzham_huffman_codes.cpp.o
│   │   │   │   ├── lzham_lzdecompbase.cpp.o
│   │   │   │   ├── lzham_lzdecomp.cpp.o
│   │   │   │   ├── lzham_mem.cpp.o
│   │   │   │   ├── lzham_platform.cpp.o
│   │   │   │   ├── lzham_prefix_coding.cpp.o
│   │   │   │   ├── lzham_symbol_codec.cpp.o
│   │   │   │   ├── lzham_timer.cpp.o
│   │   │   │   ├── lzham_vector.cpp.o
│   │   │   │   └── progress.make
│   │   │   └── progress.marks
│   │   ├── cmake_install.cmake
│   │   ├── liblzhamdecomp.so
│   │   └── Makefile
│   ├── lzhamdll
│   │   ├── CMakeFiles
│   │   │   ├── CMakeDirectoryInformation.cmake
│   │   │   ├── lzhamdll.dir
│   │   │   │   ├── build.make
│   │   │   │   ├── cmake_clean.cmake
│   │   │   │   ├── CXX.includecache
│   │   │   │   ├── DependInfo.cmake
│   │   │   │   ├── depend.internal
│   │   │   │   ├── depend.make
│   │   │   │   ├── flags.make
│   │   │   │   ├── link.txt
│   │   │   │   ├── lzham_api.cpp.o
│   │   │   │   └── progress.make
│   │   │   └── progress.marks
│   │   ├── cmake_install.cmake
│   │   ├── liblzhamdll.so
│   │   └── Makefile
│   ├── lzhamtest
│   │   ├── CMakeFiles
│   │   │   ├── CMakeDirectoryInformation.cmake
│   │   │   ├── lzhamtest.dir
│   │   │   │   ├── build.make
│   │   │   │   ├── cmake_clean.cmake
│   │   │   │   ├── CXX.includecache
│   │   │   │   ├── DependInfo.cmake
│   │   │   │   ├── depend.internal
│   │   │   │   ├── depend.make
│   │   │   │   ├── flags.make
│   │   │   │   ├── link.txt
│   │   │   │   ├── lzhamtest.cpp.o
│   │   │   │   ├── progress.make
│   │   │   │   └── timer.cpp.o
│   │   │   └── progress.marks
│   │   ├── cmake_install.cmake
│   │   ├── lzhamtest
│   │   └── Makefile
│   └── Makefile
├── CMakeLists.txt
├── example1
│   ├── example1.c
│   └── example1.vcxproj
├── example2
│   ├── example2.c
│   └── example2.vcxproj
├── example3
│   ├── example3.cpp
│   └── example3.vcxproj
├── example4
│   ├── cfile_stream.cpp
│   ├── cfile_stream.h
│   ├── comp_stream.cpp
│   ├── comp_stream.h
│   ├── data_stream.cpp
│   ├── data_stream.h
│   ├── data_stream_serializer.h
│   ├── dynamic_stream.cpp
│   ├── dynamic_stream.h
│   ├── example4.cpp
│   ├── example4.vcxproj
│   ├── mem_stream.cpp
│   ├── mem_stream.h
│   └── stream_common.h
├── include
│   ├── lzham_dynamic_lib.h
│   ├── lzham_exports.inc
│   ├── lzham.h
│   ├── lzham_static_lib.h
│   └── zlib.h
├── LICENSE
├── lzhamcomp
│   ├── CMakeLists.txt
│   ├── lzham_comp.h
│   ├── lzhamcomp.vcxproj
│   ├── lzham_lzbase.cpp
│   ├── lzham_lzbase.h
│   ├── lzham_lzcomp.cpp
│   ├── lzham_lzcomp_internal.cpp
│   ├── lzham_lzcomp_internal.h
│   ├── lzham_lzcomp_state.cpp
│   ├── lzham_match_accel.cpp
│   ├── lzham_match_accel.h
│   ├── lzham_null_threading.h
│   ├── lzham_pthreads_threading.cpp
│   ├── lzham_pthreads_threading.h
│   ├── lzham_threading.h
│   ├── lzham_win32_threading.cpp
│   └── lzham_win32_threading.h
├── lzhamdecomp
│   ├── CMakeLists.txt
│   ├── lzham_assert.cpp
│   ├── lzham_assert.h
│   ├── lzham_checksum.cpp
│   ├── lzham_checksum.h
│   ├── lzham_config.h
│   ├── lzham_core.h
│   ├── lzham_decomp.h
│   ├── lzhamdecomp.vcxproj
│   ├── lzham_helpers.h
│   ├── lzham_huffman_codes.cpp
│   ├── lzham_huffman_codes.h
│   ├── lzham_lzdecompbase.cpp
│   ├── lzham_lzdecompbase.h
│   ├── lzham_lzdecomp.cpp
│   ├── lzham_math.h
│   ├── lzham_mem.cpp
│   ├── lzham_mem.h
│   ├── lzham_platform.cpp
│   ├── lzham_platform.h
│   ├── lzham_prefix_coding.cpp
│   ├── lzham_prefix_coding.h
│   ├── lzham_symbol_codec.cpp
│   ├── lzham_symbol_codec.h
│   ├── lzham_timer.cpp
│   ├── lzham_timer.h
│   ├── lzham_traits.h
│   ├── lzham_types.h
│   ├── lzham_utils.h
│   ├── lzham_vector.cpp
│   └── lzham_vector.h
├── lzhamdll
│   ├── CMakeLists.txt
│   ├── lzham_api.cpp
│   ├── lzhamdll.def
│   ├── lzham_dll_main.cpp
│   └── lzham.vcxproj
├── lzhamlib
│   ├── lzham_lib.cpp
│   └── lzhamlib.vcxproj
├── lzham.sln
├── lzhamtest
│   ├── CMakeLists.txt
│   ├── lzhamtest.cpp
│   ├── lzhamtest.vcxproj
│   ├── timer.cpp
│   └── timer.h
└── README.md
28 directories, 184 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment