From 42eeb28a8b9c1f3ae2d667e4238e956a4a95bd6c Mon Sep 17 00:00:00 2001 From: Naios Date: Thu, 14 Apr 2016 20:30:31 +0200 Subject: Core/Scripting: Disallow the build directory to contain spaces * I wasn't able to work arround a path which contains spaces, since it seems like a CMake specific issue. * Closes #16947 --- cmake/showoptions.cmake | 2 ++ 1 file changed, 2 insertions(+) (limited to 'cmake/showoptions.cmake') diff --git a/cmake/showoptions.cmake b/cmake/showoptions.cmake index 0739e74ac6a..9229590381a 100644 --- a/cmake/showoptions.cmake +++ b/cmake/showoptions.cmake @@ -122,6 +122,8 @@ if (BUILD_SHARED_LIBS) message(" *** Dynamic linking was enforced through a dynamic script module!") endif() add_definitions(-DTRINITY_API_USE_DYNAMIC_LINKING) + + WarnAboutSpacesInBuildPath() endif() message("") -- cgit v1.2.3