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

CMakeLists.txt « msgfmt « blentranslation « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b95bf210d7c685ca6fb0aee7a8bc8b345c1eece (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright 2017 Blender Foundation. All rights reserved.

# -----------------------------------------------------------------------------
# Build msgfmt executable

blender_include_dirs(
  ../../../../intern/guardedalloc
  ../../blenlib
)

set(SRC
  msgfmt.c
)

add_cc_flags_custom_test(msgfmt)

if(WIN32)
  string(APPEND CMAKE_EXE_LINKER_FLAGS_DEBUG " /nodefaultlib:MSVCRT.lib")
endif()

add_executable(msgfmt ${SRC})
setup_platform_linker_flags(msgfmt)

target_link_libraries(msgfmt bf_blenlib)
target_link_libraries(msgfmt bf_intern_guardedalloc)

if(WIN32)
  target_link_libraries(msgfmt bf_intern_utfconv)
endif()

target_link_libraries(msgfmt ${ZLIB_LIBRARIES})
target_link_libraries(msgfmt ${PLATFORM_LINKLIBS})