Files
test2/intern/locale/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
576 B
CMake
Raw Normal View History

# SPDX-FileCopyrightText: 2012 Blender Authors
#
# SPDX-License-Identifier: GPL-2.0-or-later
set(INC
.
)
set(INC_SYS
)
set(SRC
blender_locale.cpp
messages.cpp
2012-12-04 14:43:42 +00:00
blender_locale.h
messages.h
)
set(LIB
PRIVATE bf::blenlib
PRIVATE bf::intern::guardedalloc
)
if(APPLE)
# Cocoa code to read the locale on OSX
2014-11-13 15:03:30 +01:00
list(APPEND SRC
messages_apple.mm
2014-11-13 15:03:30 +01:00
)
endif()
if(WITH_HEADLESS)
add_definitions(-DWITH_HEADLESS)
endif()
if(WITH_GHOST_SDL)
add_definitions(-DWITH_GHOST_SDL)
endif()
blender_add_lib(bf_intern_locale "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")