diff options
author | Naios <naios-dev@live.de> | 2016-04-14 20:30:31 +0200 |
---|---|---|
committer | Naios <naios-dev@live.de> | 2016-04-14 20:31:04 +0200 |
commit | 42eeb28a8b9c1f3ae2d667e4238e956a4a95bd6c (patch) | |
tree | 9ef05f825964665689de53ef86d492125d58dcc2 /cmake/showoptions.cmake | |
parent | 9e43e50fa78ec2e58fa6be52524a3d999f153870 (diff) |
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
Diffstat (limited to 'cmake/showoptions.cmake')
-rw-r--r-- | cmake/showoptions.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
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("") |