├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── cmake_uninstall.cmake.in ├── example.cpp ├── example.h ├── example.pro ├── main.cpp └── task.hpp /.gitignore: -------------------------------------------------------------------------------- 1 | example.pro.* 2 | CMakeLists.txt.* 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/README.md -------------------------------------------------------------------------------- /cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/example.cpp -------------------------------------------------------------------------------- /example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/example.h -------------------------------------------------------------------------------- /example.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/example.pro -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/main.cpp -------------------------------------------------------------------------------- /task.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhogomchungu/tasks/HEAD/task.hpp --------------------------------------------------------------------------------