├── .travis.yml ├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── appveyor.yml ├── scripts ├── parse_source.py └── utils.cmake └── src ├── common.h ├── foo.h └── main.cpp /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/.travis.yml -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/appveyor.yml -------------------------------------------------------------------------------- /scripts/parse_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/scripts/parse_source.py -------------------------------------------------------------------------------- /scripts/utils.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/scripts/utils.cmake -------------------------------------------------------------------------------- /src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/src/common.h -------------------------------------------------------------------------------- /src/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/src/foo.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onqtam/cmake-reflection-template/HEAD/src/main.cpp --------------------------------------------------------------------------------