]> git.lizzy.rs Git - minetest.git/blob - src/cguittfont/CMakeLists.txt
Fix selectionbox not honoring anaglyph mode 3d distortion
[minetest.git] / src / cguittfont / CMakeLists.txt
1 include_directories(
2   ${IRRLICHT_INCLUDE_DIR}
3   ${FREETYPE_INCLUDE_DIRS}
4 )
5
6 # CGUITTFont authors, y u no include headers you use?
7 #   Do not add CGUITTFont.cpp to the line below.
8 #   xCGUITTFont.cpp is a wrapper file that includes
9 #   additional required headers.
10 add_library(cguittfont xCGUITTFont.cpp)
11
12 target_link_libraries(
13   cguittfont
14   ${IRRLICHT_LIBRARY}
15   ${FREETYPE_LIBRARY}
16   ${ZLIB_LIBRARIES}  # needed by freetype, repeated here for safety
17 )