├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── include ├── detector.hpp └── preprocessor.hpp └── source ├── detector.cpp └── main.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/README.md -------------------------------------------------------------------------------- /include/detector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/include/detector.hpp -------------------------------------------------------------------------------- /include/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/include/preprocessor.hpp -------------------------------------------------------------------------------- /source/detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/source/detector.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thecompez/Platform-Detector/HEAD/source/main.cpp --------------------------------------------------------------------------------