├── .gitignore ├── .travis.yml ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake └── flagsConfig.cmake.in ├── include └── flags.h └── test └── flags.cc /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/README.md -------------------------------------------------------------------------------- /cmake/flagsConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/cmake/flagsConfig.cmake.in -------------------------------------------------------------------------------- /include/flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/include/flags.h -------------------------------------------------------------------------------- /test/flags.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sailormoon/flags/HEAD/test/flags.cc --------------------------------------------------------------------------------