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

CMakeLists.txt « utfconv « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9dd41c2840642f619c36aeadf20f5f5575e689fe (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
set(INC
	.
)

set(INC_SYS
	${GLEW_INCLUDE_PATH}
)

set(SRC
	utfconv.c

	utfconv.h
	#utf_func.h
)


if(WIN32)
	list(APPEND SRC
		utf_winfunc.c
		utf_winfunc.h
	)
endif()

blender_add_lib(bf_intern_utfconv "${SRC}" "${INC}" "${INC_SYS}")