├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── cmake └── ucm.cmake └── test ├── CMakeLists.txt ├── a.cc ├── b.cc ├── c.cc ├── doc_data ├── filter_0.png ├── filter_1.png └── unity.png ├── for_c.h ├── pch.h ├── separate ├── some1.cpp ├── some2.cpp └── some3.cpp └── util ├── h1.h ├── h2.h ├── level1 ├── bla_h1.h ├── bla_h2.h └── level2 │ ├── deep.h │ ├── deep2.h │ ├── deprecated.h │ ├── deprecated2.h │ └── level3 │ ├── deprecated.h │ ├── deprecated2.h │ ├── inn.h │ └── inn2.h └── some_folder ├── source1.cpp ├── source2.cpp └── source3.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/ucm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/cmake/ucm.cmake -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/a.cc: -------------------------------------------------------------------------------- 1 | int main() { 2 | return 5; 3 | } 4 | -------------------------------------------------------------------------------- /test/b.cc: -------------------------------------------------------------------------------- 1 | void b() { 2 | std::vector b; 3 | } 4 | -------------------------------------------------------------------------------- /test/c.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/test/c.cc -------------------------------------------------------------------------------- /test/doc_data/filter_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/test/doc_data/filter_0.png -------------------------------------------------------------------------------- /test/doc_data/filter_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/test/doc_data/filter_1.png -------------------------------------------------------------------------------- /test/doc_data/unity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/ucm/HEAD/test/doc_data/unity.png -------------------------------------------------------------------------------- /test/for_c.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include -------------------------------------------------------------------------------- /test/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include -------------------------------------------------------------------------------- /test/separate/some1.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/separate/some2.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/separate/some3.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/util/h1.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/h2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/bla_h1.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/bla_h2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/deep.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/deep2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/deprecated.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/deprecated2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/level3/deprecated.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/level3/deprecated2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/level3/inn.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/level1/level2/level3/inn2.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /test/util/some_folder/source1.cpp: -------------------------------------------------------------------------------- 1 | int a; 2 | -------------------------------------------------------------------------------- /test/util/some_folder/source2.cpp: -------------------------------------------------------------------------------- 1 | int a; 2 | -------------------------------------------------------------------------------- /test/util/some_folder/source3.cpp: -------------------------------------------------------------------------------- 1 | int a; 2 | --------------------------------------------------------------------------------