├── .gitignore ├── CMakeLists.txt ├── CMakeRC.cmake ├── LICENSE.txt ├── README.md └── tests ├── CMakeLists.txt ├── enoent.cpp ├── flower.cpp ├── flower.jpg ├── hello.txt ├── iterate.cpp ├── prefix.cpp ├── simple.cpp ├── subdir_a └── subdir_b │ ├── file_a.txt │ └── file_b.txt ├── whence.cpp └── whence_prefix.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | .vscode/.cmaketools.json 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeRC.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/CMakeRC.cmake -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/README.md -------------------------------------------------------------------------------- /tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tests/enoent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/enoent.cpp -------------------------------------------------------------------------------- /tests/flower.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/flower.cpp -------------------------------------------------------------------------------- /tests/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/flower.jpg -------------------------------------------------------------------------------- /tests/hello.txt: -------------------------------------------------------------------------------- 1 | Hello, world! -------------------------------------------------------------------------------- /tests/iterate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/iterate.cpp -------------------------------------------------------------------------------- /tests/prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/prefix.cpp -------------------------------------------------------------------------------- /tests/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/simple.cpp -------------------------------------------------------------------------------- /tests/subdir_a/subdir_b/file_a.txt: -------------------------------------------------------------------------------- 1 | I am a file! -------------------------------------------------------------------------------- /tests/subdir_a/subdir_b/file_b.txt: -------------------------------------------------------------------------------- 1 | I am a file! -------------------------------------------------------------------------------- /tests/whence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/whence.cpp -------------------------------------------------------------------------------- /tests/whence_prefix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vector-of-bool/cmrc/HEAD/tests/whence_prefix.cpp --------------------------------------------------------------------------------