forked from Mirrorlandia_minetest/minetest
16938adfc0
* Merge cguittfont lib in irrlicht change folder. This remove hack and static lib for FreeType
17 lines
444 B
CMake
17 lines
444 B
CMake
if (BUILD_CLIENT)
|
|
set(client_irrlicht_changes_SRCS
|
|
${CMAKE_CURRENT_SOURCE_DIR}/static_text.cpp
|
|
)
|
|
|
|
if (ENABLE_FREETYPE)
|
|
set(client_irrlicht_changes_SRCS ${client_irrlicht_changes_SRCS}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/CGUITTFont.cpp
|
|
)
|
|
endif()
|
|
|
|
# CMake require us to set a local scope and then parent scope
|
|
# Else the last set win in parent scope
|
|
set(client_irrlicht_changes_SRCS ${client_irrlicht_changes_SRCS} PARENT_SCOPE)
|
|
endif()
|
|
|