From a4c58d5914e7c57942384f1c71cec1503294ed06 Mon Sep 17 00:00:00 2001 From: auria Date: Tue, 22 Nov 2011 18:36:58 +0000 Subject: [PATCH] Fixed font tool in CMake, found by wintermute git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@10239 178a84e3-b1eb-0310-8ba1-8eac791a3b58 --- CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 37c1745b1..0fe63f2c2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -164,10 +164,10 @@ if(FONT_TOOL) find_package(X11) include_directories(${FREETYPE_INCLUDE_DIRS}) add_executable(font_tool - src/font_tool/CFontTool.cpp - src/font_tool/CFontTool.h - src/font_tool/CVectorFontTool.h - src/font_tool/main.cpp + tools/font_tool/CFontTool.cpp + tools/font_tool/CFontTool.h + tools/font_tool/CVectorFontTool.h + tools/font_tool/main.cpp ) target_link_libraries(font_tool ${FREETYPE_LIBRARIES}) target_link_libraries(font_tool ${X11_Xft_LIB})