Have conan test-build the package in a separate subdirectory
diff --git a/conanfile.py b/conanfile.py
index a7cebb9..8d407ba 100644
--- a/conanfile.py
+++ b/conanfile.py
@@ -18,7 +18,7 @@
         cmake.definitions["BUILD_TESTING"] = "OFF"
         cmake.definitions["CATCH_INSTALL_DOCS"] = "OFF"
         cmake.definitions["CATCH_INSTALL_HELPERS"] = "ON"
-        cmake.configure()
+        cmake.configure(build_folder='build')
         cmake.install()
 
         self.copy(pattern="LICENSE.txt", dst="licenses")