2013-10-24 08:49:08 +02:00
|
|
|
# CMakeLists.txt
|
|
|
|
#
|
2016-01-13 11:54:10 +01:00
|
|
|
# Copyright 2013-2016 by
|
2013-10-24 08:49:08 +02:00
|
|
|
# David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
#
|
2015-06-28 11:07:07 +02:00
|
|
|
# Written originally by John Cary <cary@txcorp.com>
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
|
|
|
# This file is part of the FreeType project, and may only be used, modified,
|
|
|
|
# and distributed under the terms of the FreeType project license,
|
|
|
|
# LICENSE.TXT. By continuing to use, modify, or distribute this file you
|
|
|
|
# indicate that you have read the license and understand and accept it
|
|
|
|
# fully.
|
|
|
|
#
|
2015-06-28 11:07:07 +02:00
|
|
|
#
|
Another adjustment to header locations.
This change is a result of a discussion thread on freetype-devel
http://lists.nongnu.org/archive/html/freetype-devel/2015-06/msg00041.html
Re-introduce the `freetype2' subdirectory for all FreeType header
files after installation, and rename the `freetype2' subdirectory in
the git repository to `freetype'.
* include/freetype2: Renamed to...
* include/freetype: This.
* CMakeLists.txt (PUBLIC_HEADERS, PUBLIC_CONFIG_HEADERS,
PRIVATE_HEADERS): Updated.
Update creation of `ftconfig.h'.
Install generated `ftconfig.h'.
* Jamfile (HDRMACRO, RefDoc), autogen.sh: Updated.
* builds/amiga/include/config/ftconfig.h, builds/freetype.mk
(PUBLIC_DIR), builds/symbian/bld.inf, builds/toplevel.mk (work),
builds/unix/freetype2.in: Updated.
* builds/unix/freetype-config.in: Updated.
* builds/unix/configure.raw: Don't check for `rmdir'.
* builds/unix/unix-def.in (DELDIR): Use `rm -rf', which is portable
according to the autoconf info manual.
* builds/unix/install.mk (install, uninstall,
distclean_project_unix): Update and simplify.
* builds/wince/*, builds/windows/*: Updated.
* devel/ft2build.h, include/ft2build.h: Updated.
* include/freetype2/config/ftheader.h,
include/freetype2/internal/ftserv.h,
include/freetype2/internal/internal.h: Update all header file
macros.
* src/tools/chktrcmp.py (TRACE_DEF_FILES): Updated.
* docs/*: Updated.
2015-06-25 13:04:57 +02:00
|
|
|
# As a preliminary, create a compilation directory and change into it, for
|
|
|
|
# example
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
Another adjustment to header locations.
This change is a result of a discussion thread on freetype-devel
http://lists.nongnu.org/archive/html/freetype-devel/2015-06/msg00041.html
Re-introduce the `freetype2' subdirectory for all FreeType header
files after installation, and rename the `freetype2' subdirectory in
the git repository to `freetype'.
* include/freetype2: Renamed to...
* include/freetype: This.
* CMakeLists.txt (PUBLIC_HEADERS, PUBLIC_CONFIG_HEADERS,
PRIVATE_HEADERS): Updated.
Update creation of `ftconfig.h'.
Install generated `ftconfig.h'.
* Jamfile (HDRMACRO, RefDoc), autogen.sh: Updated.
* builds/amiga/include/config/ftconfig.h, builds/freetype.mk
(PUBLIC_DIR), builds/symbian/bld.inf, builds/toplevel.mk (work),
builds/unix/freetype2.in: Updated.
* builds/unix/freetype-config.in: Updated.
* builds/unix/configure.raw: Don't check for `rmdir'.
* builds/unix/unix-def.in (DELDIR): Use `rm -rf', which is portable
according to the autoconf info manual.
* builds/unix/install.mk (install, uninstall,
distclean_project_unix): Update and simplify.
* builds/wince/*, builds/windows/*: Updated.
* devel/ft2build.h, include/ft2build.h: Updated.
* include/freetype2/config/ftheader.h,
include/freetype2/internal/ftserv.h,
include/freetype2/internal/internal.h: Update all header file
macros.
* src/tools/chktrcmp.py (TRACE_DEF_FILES): Updated.
* docs/*: Updated.
2015-06-25 13:04:57 +02:00
|
|
|
# mkdir ~/freetype2.compiled
|
|
|
|
# cd ~/freetype2.compiled
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
Another adjustment to header locations.
This change is a result of a discussion thread on freetype-devel
http://lists.nongnu.org/archive/html/freetype-devel/2015-06/msg00041.html
Re-introduce the `freetype2' subdirectory for all FreeType header
files after installation, and rename the `freetype2' subdirectory in
the git repository to `freetype'.
* include/freetype2: Renamed to...
* include/freetype: This.
* CMakeLists.txt (PUBLIC_HEADERS, PUBLIC_CONFIG_HEADERS,
PRIVATE_HEADERS): Updated.
Update creation of `ftconfig.h'.
Install generated `ftconfig.h'.
* Jamfile (HDRMACRO, RefDoc), autogen.sh: Updated.
* builds/amiga/include/config/ftconfig.h, builds/freetype.mk
(PUBLIC_DIR), builds/symbian/bld.inf, builds/toplevel.mk (work),
builds/unix/freetype2.in: Updated.
* builds/unix/freetype-config.in: Updated.
* builds/unix/configure.raw: Don't check for `rmdir'.
* builds/unix/unix-def.in (DELDIR): Use `rm -rf', which is portable
according to the autoconf info manual.
* builds/unix/install.mk (install, uninstall,
distclean_project_unix): Update and simplify.
* builds/wince/*, builds/windows/*: Updated.
* devel/ft2build.h, include/ft2build.h: Updated.
* include/freetype2/config/ftheader.h,
include/freetype2/internal/ftserv.h,
include/freetype2/internal/internal.h: Update all header file
macros.
* src/tools/chktrcmp.py (TRACE_DEF_FILES): Updated.
* docs/*: Updated.
2015-06-25 13:04:57 +02:00
|
|
|
# Now you can say
|
|
|
|
#
|
|
|
|
# cmake <path-to-freetype2-src-dir>
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
2014-05-16 08:09:43 +02:00
|
|
|
# to create a Makefile that builds a static version of the library.
|
|
|
|
#
|
|
|
|
# For a dynamic library, use
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
2015-06-28 11:07:07 +02:00
|
|
|
# cmake <path-to-freetype2-src-dir> -D BUILD_SHARED_LIBS:BOOL=true
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
2014-05-16 08:09:43 +02:00
|
|
|
# For a framework on OS X, use
|
|
|
|
#
|
2015-06-28 11:07:07 +02:00
|
|
|
# cmake <path-to-freetype2-src-dir> -D BUILD_FRAMEWORK:BOOL=true -G Xcode
|
2014-05-16 08:09:43 +02:00
|
|
|
#
|
2014-10-18 10:42:28 +02:00
|
|
|
# instead.
|
|
|
|
#
|
|
|
|
# For an iOS static library, use
|
|
|
|
#
|
2016-03-11 06:50:23 +01:00
|
|
|
# cmake -D IOS_PLATFORM=OS -G Xcode <path-to-freetype2-src-dir>
|
2014-10-18 10:42:28 +02:00
|
|
|
#
|
|
|
|
# or
|
|
|
|
#
|
2016-03-11 06:50:23 +01:00
|
|
|
# cmake -D IOS_PLATFORM=SIMULATOR -G Xcode <path-to-freetype2-src-dir>
|
2014-10-18 10:42:28 +02:00
|
|
|
#
|
|
|
|
# Please refer to the cmake manual for further options, in particular, how
|
|
|
|
# to modify compilation and linking parameters.
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
|
|
|
# Some notes.
|
|
|
|
#
|
2015-06-28 11:07:07 +02:00
|
|
|
# . `cmake' creates configuration files in
|
|
|
|
#
|
|
|
|
# <build-directory>/include/freetype/config
|
|
|
|
#
|
|
|
|
# which should be further modified if necessary.
|
2013-10-24 08:49:08 +02:00
|
|
|
#
|
|
|
|
# . You can use `cmake' directly on a freshly cloned FreeType git
|
|
|
|
# repository.
|
|
|
|
#
|
2015-06-28 11:07:07 +02:00
|
|
|
# . `CMakeLists.txt' is provided as-is since it is normally not used by the
|
2013-10-24 08:49:08 +02:00
|
|
|
# developer team.
|
2015-11-27 06:34:39 +01:00
|
|
|
#
|
|
|
|
# . If you want to disable the automatic generation of the distribution
|
|
|
|
# targets, add the `-D FREETYPE_NO_DIST=true' command line argument.
|
2015-11-27 07:11:42 +01:00
|
|
|
#
|
|
|
|
# . Set the `WITH_ZLIB', `WITH_BZip2', `WITH_PNG', and `WITH_HarfBuzz'
|
|
|
|
# CMake variables to `ON' or `OFF' to force or skip using a dependency.
|
|
|
|
# Leave a variable undefined (which is the default) to use the dependency
|
|
|
|
# only if it is available. Example:
|
|
|
|
#
|
|
|
|
# cmake ... -DWITH_ZLIB=ON -DWITH_HarfBuzz=OFF ...
|
2016-04-16 10:24:24 +02:00
|
|
|
#
|
|
|
|
# . Installation of FreeType can be controlled with the CMake variables
|
|
|
|
# `SKIP_INSTALL_HEADERS', `SKIP_INSTALL_LIBRARIES', and `SKIP_INSTALL_ALL'
|
|
|
|
# (this is compatible with the same CMake variables in zlib's CMake
|
|
|
|
# support).
|
2013-10-24 08:49:08 +02:00
|
|
|
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 2.6)
|
|
|
|
|
2015-06-28 10:42:47 +02:00
|
|
|
|
|
|
|
include(CheckIncludeFile)
|
|
|
|
|
|
|
|
|
2014-10-18 10:42:28 +02:00
|
|
|
# CMAKE_TOOLCHAIN_FILE must be set before `project' is called, which
|
|
|
|
# configures the base build environment and references the toolchain file
|
|
|
|
if (APPLE)
|
|
|
|
if (DEFINED IOS_PLATFORM)
|
|
|
|
if (NOT "${IOS_PLATFORM}" STREQUAL "OS"
|
|
|
|
AND NOT "${IOS_PLATFORM}" STREQUAL "SIMULATOR")
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"IOS_PLATFORM must be set to either OS or SIMULATOR")
|
|
|
|
endif ()
|
|
|
|
if (NOT "${CMAKE_GENERATOR}" STREQUAL "Xcode")
|
|
|
|
message(AUTHOR_WARNING
|
|
|
|
"You should use Xcode generator with IOS_PLATFORM enabled to get Universal builds.")
|
|
|
|
endif ()
|
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"BUILD_SHARED_LIBS can not be on with IOS_PLATFORM enabled")
|
|
|
|
endif ()
|
|
|
|
if (BUILD_FRAMEWORK)
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"BUILD_FRAMEWORK can not be on with IOS_PLATFORM enabled")
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
# iOS only uses static libraries
|
|
|
|
set(BUILD_SHARED_LIBS OFF)
|
|
|
|
|
|
|
|
set(CMAKE_TOOLCHAIN_FILE
|
2016-03-11 06:50:23 +01:00
|
|
|
${CMAKE_SOURCE_DIR}/builds/cmake/iOS.cmake)
|
2014-10-18 10:42:28 +02:00
|
|
|
endif ()
|
|
|
|
else ()
|
|
|
|
if (DEFINED IOS_PLATFORM)
|
|
|
|
message(FATAL_ERROR "IOS_PLATFORM is not supported on this platform")
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
2015-06-28 10:26:33 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
project(freetype)
|
|
|
|
|
2015-06-28 10:26:33 +02:00
|
|
|
|
2015-10-20 07:19:44 +02:00
|
|
|
if (WIN32 AND NOT MINGW AND BUILD_SHARED_LIBS)
|
|
|
|
message(FATAL_ERROR "Building shared libraries on Windows needs MinGW")
|
|
|
|
endif ()
|
|
|
|
|
2015-06-28 10:26:33 +02:00
|
|
|
# Disallow in-source builds
|
|
|
|
if ("${PROJECT_BINARY_DIR}" STREQUAL "${PROJECT_SOURCE_DIR}")
|
|
|
|
message(FATAL_ERROR
|
|
|
|
"
|
|
|
|
In-source builds are not permitted! Make a separate folder for"
|
|
|
|
" building, e.g.,"
|
|
|
|
"
|
|
|
|
mkdir build; cd build; cmake .."
|
|
|
|
"
|
|
|
|
Before that, remove the files created by this failed run with"
|
|
|
|
"
|
|
|
|
rm -rf CMakeCache.txt CMakeFiles")
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
2015-06-28 11:03:10 +02:00
|
|
|
# Add local cmake modules
|
2015-11-27 06:47:13 +01:00
|
|
|
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/builds/cmake)
|
2015-06-28 11:03:10 +02:00
|
|
|
|
|
|
|
|
2014-05-16 08:09:43 +02:00
|
|
|
if (BUILD_FRAMEWORK)
|
|
|
|
if (NOT "${CMAKE_GENERATOR}" STREQUAL "Xcode")
|
2014-10-18 10:42:28 +02:00
|
|
|
message(FATAL_ERROR
|
|
|
|
"You should use Xcode generator with BUILD_FRAMEWORK enabled")
|
2014-05-16 08:09:43 +02:00
|
|
|
endif ()
|
|
|
|
set(CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD_32_64_BIT)")
|
|
|
|
set(BUILD_SHARED_LIBS ON)
|
|
|
|
endif ()
|
|
|
|
|
2015-06-28 11:03:10 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
set(VERSION_MAJOR "2")
|
* Version 2.7 released.
=======================
Tag sources with `VER-2-7'.
* docs/VERSION.TXT: Add entry for version 2.7.
* README, Jamfile (RefDoc), builds/windows/vc2005/freetype.vcproj,
builds/windows/vc2005/index.html,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2008/index.html,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/index.html,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualc/index.html,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj,
builds/windows/visualce/index.html,
builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2005-ce/index.html,
builds/wince/vc2008-ce/freetype.vcproj,
builds/wince/vc2008-ce/index.html: s/2.6.5/2.7/, s/265/27/.
* include/freetype/freetype.h (FREETYPE_MINOR): Set to 7.
(FREETYPE_PATCH): Set to 0.
* builds/unix/configure.raw (version_info): Set to 18:6:12.
* CMakeLists.txt (VERSION_MINOR): Set to 7.
(VERSION_PATCH): Set to 0.
* docs/CHANGES: Updated.
2016-09-08 09:04:32 +02:00
|
|
|
set(VERSION_MINOR "7")
|
|
|
|
set(VERSION_PATCH "0")
|
2015-08-02 18:35:49 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
set(PROJECT_VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH})
|
2015-08-02 18:35:49 +02:00
|
|
|
set(SHARED_LIBRARY_VERSION ${VERSION_MAJOR}.${VERSION_MINOR})
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2015-06-28 11:03:10 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
# Compiler definitions for building the library
|
|
|
|
add_definitions(-DFT2_BUILD_LIBRARY)
|
|
|
|
|
2015-06-28 10:42:47 +02:00
|
|
|
|
2015-06-28 11:03:10 +02:00
|
|
|
# Find dependencies
|
2015-11-27 07:11:42 +01:00
|
|
|
foreach (d ZLIB BZip2 PNG HarfBuzz)
|
|
|
|
string(TOUPPER "${d}" D)
|
|
|
|
|
|
|
|
if (DEFINED WITH_${d} OR DEFINED WITH_${D})
|
|
|
|
if (WITH_${d} OR WITH_${D})
|
|
|
|
find_package(${d} QUIET REQUIRED)
|
|
|
|
endif ()
|
|
|
|
else ()
|
|
|
|
find_package(${d} QUIET)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (${d}_FOUND OR ${D}_FOUND)
|
|
|
|
message(STATUS "Building with ${d}")
|
2016-04-16 10:24:24 +02:00
|
|
|
endif ()
|
2015-11-27 07:11:42 +01:00
|
|
|
endforeach ()
|
2015-06-28 11:03:10 +02:00
|
|
|
|
|
|
|
|
2015-06-28 10:42:47 +02:00
|
|
|
message(STATUS
|
|
|
|
"Creating directory ${PROJECT_BINARY_DIR}/include/freetype/config")
|
|
|
|
file(MAKE_DIRECTORY "${PROJECT_BINARY_DIR}/include/freetype/config")
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2015-06-28 11:03:10 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
# Create the configuration file
|
2015-06-28 11:40:02 +02:00
|
|
|
message(STATUS
|
|
|
|
"Creating file ${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h")
|
|
|
|
|
2015-06-25 16:38:11 +02:00
|
|
|
if (UNIX)
|
2015-06-28 10:42:47 +02:00
|
|
|
check_include_file("unistd.h" HAVE_UNISTD_H)
|
|
|
|
check_include_file("fcntl.h" HAVE_FCNTL_H)
|
|
|
|
check_include_file("stdint.h" HAVE_STDINT_H)
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2015-06-25 16:38:11 +02:00
|
|
|
file(READ "${PROJECT_SOURCE_DIR}/builds/unix/ftconfig.in"
|
|
|
|
FTCONFIG_H)
|
2015-06-28 10:42:47 +02:00
|
|
|
if (HAVE_UNISTD_H)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"#undef +(HAVE_UNISTD_H)" "#define \\1"
|
|
|
|
FTCONFIG_H "${FTCONFIG_H}")
|
|
|
|
endif ()
|
|
|
|
if (HAVE_FCNTL_H)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"#undef +(HAVE_FCNTL_H)" "#define \\1"
|
|
|
|
FTCONFIG_H "${FTCONFIG_H}")
|
|
|
|
endif ()
|
|
|
|
if (HAVE_STDINT_H)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"#undef +(HAVE_STDINT_H)" "#define \\1"
|
|
|
|
FTCONFIG_H "${FTCONFIG_H}")
|
|
|
|
endif ()
|
2015-06-25 16:38:11 +02:00
|
|
|
string(REPLACE "/undef " "#undef "
|
|
|
|
FTCONFIG_H "${FTCONFIG_H}")
|
2016-06-09 10:55:52 +02:00
|
|
|
file(WRITE "${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h-new"
|
2015-06-25 16:38:11 +02:00
|
|
|
"${FTCONFIG_H}")
|
2015-06-28 11:40:02 +02:00
|
|
|
else ()
|
|
|
|
file(READ "${PROJECT_SOURCE_DIR}/include/freetype/config/ftconfig.h"
|
|
|
|
FTCONFIG_H)
|
2016-06-09 10:55:52 +02:00
|
|
|
file(WRITE "${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h-new"
|
2015-06-28 11:40:02 +02:00
|
|
|
"${FTCONFIG_H}")
|
2015-06-25 16:38:11 +02:00
|
|
|
endif ()
|
2016-06-09 10:55:52 +02:00
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
|
|
"${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h-new"
|
|
|
|
"${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h")
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2015-06-28 10:42:47 +02:00
|
|
|
|
2015-06-28 11:03:10 +02:00
|
|
|
# Create the options file
|
|
|
|
message(STATUS
|
|
|
|
"Creating file ${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h")
|
|
|
|
|
|
|
|
file(READ "${PROJECT_SOURCE_DIR}/include/freetype/config/ftoption.h"
|
|
|
|
FTOPTION_H)
|
|
|
|
if (ZLIB_FOUND)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"/\\* +(#define +FT_CONFIG_OPTION_SYSTEM_ZLIB) +\\*/" "\\1"
|
|
|
|
FTOPTION_H "${FTOPTION_H}")
|
|
|
|
endif ()
|
|
|
|
if (BZIP2_FOUND)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"/\\* +(#define +FT_CONFIG_OPTION_USE_BZIP2) +\\*/" "\\1"
|
|
|
|
FTOPTION_H "${FTOPTION_H}")
|
|
|
|
endif ()
|
|
|
|
if (PNG_FOUND)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"/\\* +(#define +FT_CONFIG_OPTION_USE_PNG) +\\*/" "\\1"
|
|
|
|
FTOPTION_H "${FTOPTION_H}")
|
|
|
|
endif ()
|
|
|
|
if (HARFBUZZ_FOUND)
|
|
|
|
string(REGEX REPLACE
|
|
|
|
"/\\* +(#define +FT_CONFIG_OPTION_USE_HARFBUZZ) +\\*/" "\\1"
|
|
|
|
FTOPTION_H "${FTOPTION_H}")
|
|
|
|
endif ()
|
2016-06-09 10:55:52 +02:00
|
|
|
file(WRITE "${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h-new"
|
2015-06-28 11:03:10 +02:00
|
|
|
"${FTOPTION_H}")
|
2016-06-09 10:55:52 +02:00
|
|
|
execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
|
|
"${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h-new"
|
|
|
|
"${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h")
|
2015-06-28 11:03:10 +02:00
|
|
|
|
|
|
|
|
2015-06-28 10:42:47 +02:00
|
|
|
# Specify library include directories
|
|
|
|
include_directories("${PROJECT_SOURCE_DIR}/include")
|
|
|
|
include_directories(BEFORE "${PROJECT_BINARY_DIR}/include")
|
|
|
|
|
|
|
|
|
Another adjustment to header locations.
This change is a result of a discussion thread on freetype-devel
http://lists.nongnu.org/archive/html/freetype-devel/2015-06/msg00041.html
Re-introduce the `freetype2' subdirectory for all FreeType header
files after installation, and rename the `freetype2' subdirectory in
the git repository to `freetype'.
* include/freetype2: Renamed to...
* include/freetype: This.
* CMakeLists.txt (PUBLIC_HEADERS, PUBLIC_CONFIG_HEADERS,
PRIVATE_HEADERS): Updated.
Update creation of `ftconfig.h'.
Install generated `ftconfig.h'.
* Jamfile (HDRMACRO, RefDoc), autogen.sh: Updated.
* builds/amiga/include/config/ftconfig.h, builds/freetype.mk
(PUBLIC_DIR), builds/symbian/bld.inf, builds/toplevel.mk (work),
builds/unix/freetype2.in: Updated.
* builds/unix/freetype-config.in: Updated.
* builds/unix/configure.raw: Don't check for `rmdir'.
* builds/unix/unix-def.in (DELDIR): Use `rm -rf', which is portable
according to the autoconf info manual.
* builds/unix/install.mk (install, uninstall,
distclean_project_unix): Update and simplify.
* builds/wince/*, builds/windows/*: Updated.
* devel/ft2build.h, include/ft2build.h: Updated.
* include/freetype2/config/ftheader.h,
include/freetype2/internal/ftserv.h,
include/freetype2/internal/internal.h: Update all header file
macros.
* src/tools/chktrcmp.py (TRACE_DEF_FILES): Updated.
* docs/*: Updated.
2015-06-25 13:04:57 +02:00
|
|
|
file(GLOB PUBLIC_HEADERS "include/ft2build.h" "include/freetype/*.h")
|
|
|
|
file(GLOB PUBLIC_CONFIG_HEADERS "include/freetype/config/*.h")
|
|
|
|
file(GLOB PRIVATE_HEADERS "include/freetype/internal/*.h")
|
2014-05-16 08:09:43 +02:00
|
|
|
|
2015-06-28 11:07:07 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
set(BASE_SRCS
|
|
|
|
src/autofit/autofit.c
|
2015-06-25 15:45:13 +02:00
|
|
|
src/base/ftbase.c
|
2013-10-24 08:49:08 +02:00
|
|
|
src/base/ftbbox.c
|
2014-05-13 07:33:48 +02:00
|
|
|
src/base/ftbdf.c
|
2013-10-24 08:49:08 +02:00
|
|
|
src/base/ftbitmap.c
|
|
|
|
src/base/ftcid.c
|
Rename `ftxf86.[ch]' to `ftfntfmt.[ch]'.
CMakeLists.txt, builds/amiga/makefile, builds/amiga/makefile.os4,
builds/amiga/smakefile, builds/mac/FreeType.m68k_cfm.make.txt,
builds/mac/FreeType.m68k_far.make.txt,
builds/mac/FreeType.ppc_carbon.make.txt,
builds/mac/FreeType.ppc_classic.make.txt, builds/symbian/bld.inf,
builds/symbian/freetype.mmp, builds/wince/vc2005-ce/freetype.vcproj,
builds/wince/vc2008-ce/freetype.vcproj,
builds/windows/vc2005/freetype.vcproj,
builds/windows/vc2008/freetype.vcproj,
builds/windows/vc2010/freetype.vcxproj,
builds/windows/vc2010/freetype.vcxproj.filters,
builds/windows/visualc/freetype.dsp,
builds/windows/visualc/freetype.vcproj,
builds/windows/visualce/freetype.dsp,
builds/windows/visualce/freetype.vcproj, docs/INSTALL.ANY,
include/config/ftheader.h, include/ftfntfmt.h, modules.cfg,
src/base/ftfntfmt.c, vms_make.com: Updated.
2015-03-11 06:30:23 +01:00
|
|
|
src/base/ftfntfmt.c
|
2013-10-24 08:49:08 +02:00
|
|
|
src/base/ftfstype.c
|
|
|
|
src/base/ftgasp.c
|
|
|
|
src/base/ftglyph.c
|
|
|
|
src/base/ftgxval.c
|
|
|
|
src/base/ftinit.c
|
|
|
|
src/base/ftlcdfil.c
|
|
|
|
src/base/ftmm.c
|
|
|
|
src/base/ftotval.c
|
|
|
|
src/base/ftpatent.c
|
|
|
|
src/base/ftpfr.c
|
|
|
|
src/base/ftstroke.c
|
|
|
|
src/base/ftsynth.c
|
|
|
|
src/base/ftsystem.c
|
|
|
|
src/base/fttype1.c
|
|
|
|
src/base/ftwinfnt.c
|
|
|
|
src/bdf/bdf.c
|
|
|
|
src/bzip2/ftbzip2.c
|
|
|
|
src/cache/ftcache.c
|
|
|
|
src/cff/cff.c
|
|
|
|
src/cid/type1cid.c
|
|
|
|
src/gzip/ftgzip.c
|
|
|
|
src/lzw/ftlzw.c
|
|
|
|
src/pcf/pcf.c
|
|
|
|
src/pfr/pfr.c
|
|
|
|
src/psaux/psaux.c
|
|
|
|
src/pshinter/pshinter.c
|
2015-06-25 15:45:13 +02:00
|
|
|
src/psnames/psnames.c
|
2013-10-24 08:49:08 +02:00
|
|
|
src/raster/raster.c
|
|
|
|
src/sfnt/sfnt.c
|
|
|
|
src/smooth/smooth.c
|
|
|
|
src/truetype/truetype.c
|
|
|
|
src/type1/type1.c
|
|
|
|
src/type42/type42.c
|
|
|
|
src/winfonts/winfnt.c
|
|
|
|
)
|
|
|
|
|
2015-06-26 06:46:59 +02:00
|
|
|
if (WIN32)
|
|
|
|
set(BASE_SRCS ${BASE_SRCS} builds/windows/ftdebug.c)
|
|
|
|
elseif (WINCE)
|
|
|
|
set(BASE_SRCS ${BASE_SRCS} builds/wince/ftdebug.c)
|
|
|
|
else ()
|
|
|
|
set(BASE_SRCS ${BASE_SRCS} src/base/ftdebug.c)
|
|
|
|
endif ()
|
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2014-05-16 08:09:43 +02:00
|
|
|
if (BUILD_FRAMEWORK)
|
|
|
|
set(BASE_SRCS
|
|
|
|
${BASE_SRCS}
|
|
|
|
builds/mac/freetype-Info.plist
|
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
|
2015-11-27 18:28:31 +01:00
|
|
|
set(CMAKE_DEBUG_POSTFIX d)
|
2015-06-28 11:07:07 +02:00
|
|
|
|
2014-05-16 08:09:43 +02:00
|
|
|
add_library(freetype
|
|
|
|
${PUBLIC_HEADERS}
|
|
|
|
${PUBLIC_CONFIG_HEADERS}
|
|
|
|
${PRIVATE_HEADERS}
|
|
|
|
${BASE_SRCS}
|
|
|
|
)
|
|
|
|
|
2015-06-28 11:07:07 +02:00
|
|
|
|
2015-08-02 18:35:49 +02:00
|
|
|
if (BUILD_SHARED_LIBS)
|
|
|
|
set_target_properties(freetype PROPERTIES
|
|
|
|
VERSION ${PROJECT_VERSION}
|
|
|
|
SOVERSION ${SHARED_LIBRARY_VERSION}
|
|
|
|
COMPILE_DEFINITIONS freetype_EXPORTS
|
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
2014-05-16 08:09:43 +02:00
|
|
|
if (BUILD_FRAMEWORK)
|
|
|
|
set_property(SOURCE ${PUBLIC_CONFIG_HEADERS}
|
|
|
|
PROPERTY MACOSX_PACKAGE_LOCATION Headers/config
|
|
|
|
)
|
|
|
|
set_target_properties(freetype PROPERTIES
|
|
|
|
FRAMEWORK TRUE
|
|
|
|
MACOSX_FRAMEWORK_INFO_PLIST builds/mac/freetype-Info.plist
|
|
|
|
PUBLIC_HEADER "${PUBLIC_HEADERS}"
|
|
|
|
XCODE_ATTRIBUTE_INSTALL_PATH "@rpath"
|
|
|
|
)
|
|
|
|
endif ()
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2016-12-22 12:24:23 +01:00
|
|
|
if (NOT CMAKE_VERSION VERSION_LESS 2.8.12)
|
2015-11-27 18:37:21 +01:00
|
|
|
target_include_directories(freetype
|
|
|
|
PUBLIC $<INSTALL_INTERFACE:include/freetype2>)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (CMAKE_VERSION VERSION_LESS 2.8.12)
|
|
|
|
set(MAYBE_PRIVATE "")
|
|
|
|
else ()
|
|
|
|
set(MAYBE_PRIVATE "PRIVATE")
|
|
|
|
endif ()
|
2015-06-28 11:03:10 +02:00
|
|
|
|
|
|
|
if (ZLIB_FOUND)
|
2015-11-27 18:37:21 +01:00
|
|
|
target_link_libraries(freetype ${MAYBE_PRIVATE} ${ZLIB_LIBRARIES})
|
2015-06-28 11:03:10 +02:00
|
|
|
include_directories(${ZLIB_INCLUDE_DIRS})
|
|
|
|
endif ()
|
|
|
|
if (BZIP2_FOUND)
|
2015-11-27 18:37:21 +01:00
|
|
|
target_link_libraries(freetype ${MAYBE_PRIVATE} ${BZIP2_LIBRARIES})
|
2015-06-28 11:03:10 +02:00
|
|
|
include_directories(${BZIP2_INCLUDE_DIR}) # not BZIP2_INCLUDE_DIRS
|
|
|
|
endif ()
|
|
|
|
if (PNG_FOUND)
|
|
|
|
add_definitions(${PNG_DEFINITIONS})
|
2015-11-27 18:37:21 +01:00
|
|
|
target_link_libraries(freetype ${MAYBE_PRIVATE} ${PNG_LIBRARIES})
|
2015-06-28 11:03:10 +02:00
|
|
|
include_directories(${PNG_INCLUDE_DIRS})
|
|
|
|
endif ()
|
|
|
|
if (HARFBUZZ_FOUND)
|
2015-11-27 18:37:21 +01:00
|
|
|
target_link_libraries(freetype ${MAYBE_PRIVATE} ${HARFBUZZ_LIBRARIES})
|
2015-06-28 11:03:10 +02:00
|
|
|
include_directories(${HARFBUZZ_INCLUDE_DIRS})
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
# Installations
|
2013-11-13 08:55:46 +01:00
|
|
|
# Note the trailing slash in the argument to the `DIRECTORY' directive
|
2016-04-16 10:24:24 +02:00
|
|
|
if (NOT SKIP_INSTALL_HEADERS AND NOT SKIP_INSTALL_ALL)
|
|
|
|
install(DIRECTORY ${PROJECT_SOURCE_DIR}/include/
|
|
|
|
DESTINATION include/freetype2
|
|
|
|
PATTERN "internal" EXCLUDE
|
|
|
|
PATTERN "ftconfig.h" EXCLUDE
|
|
|
|
PATTERN "ftoption.h" EXCLUDE
|
|
|
|
)
|
|
|
|
install(FILES
|
|
|
|
${PROJECT_BINARY_DIR}/include/freetype/config/ftconfig.h
|
|
|
|
${PROJECT_BINARY_DIR}/include/freetype/config/ftoption.h
|
|
|
|
DESTINATION include/freetype2/freetype/config
|
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
|
|
|
|
if (NOT SKIP_INSTALL_LIBRARIES AND NOT SKIP_INSTALL_ALL)
|
|
|
|
install(TARGETS freetype
|
|
|
|
EXPORT freetype-targets
|
|
|
|
RUNTIME DESTINATION bin
|
|
|
|
LIBRARY DESTINATION lib
|
|
|
|
ARCHIVE DESTINATION lib
|
|
|
|
FRAMEWORK DESTINATION Library/Frameworks
|
|
|
|
)
|
|
|
|
install(EXPORT freetype-targets
|
|
|
|
DESTINATION lib/cmake/freetype
|
|
|
|
FILE freetype-config.cmake
|
|
|
|
)
|
|
|
|
endif ()
|
2013-10-24 08:49:08 +02:00
|
|
|
|
2015-06-28 11:07:07 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
# Packaging
|
|
|
|
# CPack version numbers for release tarball name.
|
|
|
|
set(CPACK_PACKAGE_VERSION_MAJOR ${VERSION_MAJOR})
|
|
|
|
set(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR})
|
|
|
|
set(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH}})
|
|
|
|
if (NOT DEFINED CPACK_PACKAGE_DESCRIPTION_SUMMARY)
|
|
|
|
set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "${CMAKE_PROJECT_NAME}")
|
|
|
|
endif ()
|
|
|
|
if (NOT DEFINED CPACK_SOURCE_PACKAGE_FILE_NAME)
|
|
|
|
set(CPACK_SOURCE_PACKAGE_FILE_NAME
|
|
|
|
"${CMAKE_PROJECT_NAME}-${PROJECT_VERSION}-r${PROJECT_REV}"
|
|
|
|
CACHE INTERNAL "tarball basename"
|
|
|
|
)
|
|
|
|
endif ()
|
|
|
|
set(CPACK_SOURCE_GENERATOR TGZ)
|
|
|
|
set(CPACK_SOURCE_IGNORE_FILES
|
|
|
|
"/CVS/;/.svn/;.swp$;.#;/#;/build/;/serial/;/ser/;/parallel/;/par/;~;/preconfig.out;/autom4te.cache/;/.config")
|
|
|
|
set(CPACK_GENERATOR TGZ)
|
|
|
|
include(CPack)
|
|
|
|
|
2015-06-28 11:07:07 +02:00
|
|
|
|
2015-11-27 06:34:39 +01:00
|
|
|
# Add `make dist' target if FREETYPE_DIST is set (which is the default)
|
|
|
|
if (NOT DEFINED FREETYPE_NO_DIST)
|
|
|
|
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
|
|
|
|
endif ()
|
2015-06-28 11:07:07 +02:00
|
|
|
|
2013-10-24 08:49:08 +02:00
|
|
|
# eof
|