Переглянути джерело

Add CMakeListst.txt for fontgen, however it is not enabled due to the broken state of the tool

Daniele Bartolini 12 роки тому
батько
коміт
20fd02d903
1 змінених файлів з 13 додано та 0 видалено
  1. 13 0
      tools/editors/fontgen/CMakeLists.txt

+ 13 - 0
tools/editors/fontgen/CMakeLists.txt

@@ -0,0 +1,13 @@
+cmake_minimum_required(VERSION 2.8)
+
+include(FindFreetype)
+
+if (FREETYPE_FOUND)
+	include_directories(${FREETYPE_INCLUDE_DIRS})
+	link_libraries(${FREETYPE_LIBRARIES})
+endif (FREETYPE_FOUND)
+
+add_executable(fontgen fontgen.cpp)
+
+target_link_libraries(fontgen crown)
+