Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2014-07-08 00:06:34 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-07-08 00:06:34 +0400
commitea1f1fe0c20ab41fb9c9d332e7317d04a3bf0baf (patch)
tree4db5fd62e8e8e4bbff7edf64968e4f27f2d03f73 /CMakeLists.txt
parentaac283966f663af78bb6036d107a63de3da29cd7 (diff)
BLI_string, dont pass unicode to ascii BLI_str_partition functions
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3d3a8a4cc79..856ce8e934e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1894,7 +1894,7 @@ elseif(APPLE)
else() # vanilla gcc or clang_omp support OpenMP
message(STATUS "Using special OpenMP enabled compiler !") # letting find_package(OpenMP) module work for gcc
string(SUBSTRING "${CMAKE_C_COMPILER}" 0 5 CLANG_OMP)
- message(STATUS "Using clang-omp from darwin libs "${CLANG_OMP})
+ message(STATUS "Using clang-omp from darwin libs " ${CLANG_OMP})
if(CMAKE_C_COMPILER_ID MATCHES "Clang") # clang-omp in darwin libs
set(OPENMP_FOUND ON)
set(OpenMP_C_FLAGS "-fopenmp" CACHE STRING "C compiler flags for OpenMP parallization" FORCE)