From f34cd1143b16e5d729506ef62c1ef8b99e4958dc Mon Sep 17 00:00:00 2001 From: Alex Hultman <3397140+alexhultman@users.noreply.github.com> Date: Fri, 28 Sep 2018 16:46:19 +0200 Subject: [PATCH] Create FAQ.md --- misc/FAQ.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 misc/FAQ.md diff --git a/misc/FAQ.md b/misc/FAQ.md new file mode 100644 index 0000000..1c8293d --- /dev/null +++ b/misc/FAQ.md @@ -0,0 +1,19 @@ +## Build systems +Q: +``` +Hi Alex, +I've used your library and I like it, however, to integrate it in my process it needs to use cmake and conan. I have written those for my own project, would you like me to submit a pull request? + +Regards, +Ioannis +``` +A: +``` +Hi Ioannis, + +This is a very common request. I don't accept any specific build systems because I know from experience that doing so opens up hell. People simply cannot agree on which build system to use, or even how to use one particular build system. + +That's why I no longer accept any such PRs. I've had too many CMake PRs dragging in completely different directions to know this is the only solution. + +You'll have to clone the repo and create a new project in whatever build system you want to use. +```