From 04b0dcd9e53206d3208c0a846d2e52f262bad985 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 6 Sep 2010 10:15:41 +0000 Subject: - use list append in more places (preferred method since its faster) - remove some unused include paths - remove unused linux path define --- source/blender/blenfont/CMakeLists.txt | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'source/blender/blenfont/CMakeLists.txt') diff --git a/source/blender/blenfont/CMakeLists.txt b/source/blender/blenfont/CMakeLists.txt index 8df40344e5e..abaf769bd3c 100644 --- a/source/blender/blenfont/CMakeLists.txt +++ b/source/blender/blenfont/CMakeLists.txt @@ -24,14 +24,19 @@ FILE(GLOB SRC intern/*.c) -SET(INC - ../../../intern/guardedalloc ../blenlib ../makesdna ../editors/include - ../blenkernel ../../../extern/glew/include . +SET(INC + . + ../blenlib + ../makesdna + ../editors/include + ../blenkernel + ../../../intern/guardedalloc + ../../../extern/glew/include ${FREETYPE_INCLUDE_DIRS} ) IF(WITH_INTERNATIONAL) - SET(INC ${INC} ${GETTEXT_INC}) + LIST(APPEND INC ${GETTEXT_INC}) ADD_DEFINITIONS(-DINTERNATIONAL) ENDIF(WITH_INTERNATIONAL) -- cgit v1.2.3