Browse Source

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

Daniele Bartolini 12 năm trước cách đây
mục cha
commit
20fd02d903
1 tập tin đã thay đổi với 13 bổ sung0 xóa
  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)
+