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:
Diffstat (limited to 'intern/locale/CMakeLists.txt')
-rw-r--r--intern/locale/CMakeLists.txt28
1 files changed, 14 insertions, 14 deletions
diff --git a/intern/locale/CMakeLists.txt b/intern/locale/CMakeLists.txt
index 31b9e690b29..5c5da31482d 100644
--- a/intern/locale/CMakeLists.txt
+++ b/intern/locale/CMakeLists.txt
@@ -19,42 +19,42 @@
# ***** END GPL LICENSE BLOCK *****
set(INC
- .
+ .
)
set(INC_SYS
)
set(SRC
- boost_locale_wrapper.cpp
+ boost_locale_wrapper.cpp
- boost_locale_wrapper.h
+ boost_locale_wrapper.h
)
set(LIB
)
if(APPLE)
- # Cocoa code to read the locale on OSX
- list(APPEND SRC
- osx_user_locale.mm
- )
+ # Cocoa code to read the locale on OSX
+ list(APPEND SRC
+ osx_user_locale.mm
+ )
endif()
if(WITH_HEADLESS)
- add_definitions(-DWITH_HEADLESS)
+ add_definitions(-DWITH_HEADLESS)
endif()
if(WITH_GHOST_SDL)
- add_definitions(-DWITH_GHOST_SDL)
+ add_definitions(-DWITH_GHOST_SDL)
endif()
if(WITH_INTERNATIONAL)
- list(APPEND INC_SYS
- ${BOOST_INCLUDE_DIR}
- )
- add_definitions(-DWITH_INTERNATIONAL)
- add_definitions(${BOOST_DEFINITIONS})
+ list(APPEND INC_SYS
+ ${BOOST_INCLUDE_DIR}
+ )
+ add_definitions(-DWITH_INTERNATIONAL)
+ add_definitions(${BOOST_DEFINITIONS})
endif()
blender_add_lib(bf_intern_locale "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")