forked from minhngoc25a/freetype2
Formatting, CR/LF issues.
This commit is contained in:
parent
6d24acb9a5
commit
8e6c56f99e
12
Jamfile
12
Jamfile
|
@ -60,14 +60,14 @@ FT2_LIB ?= $(LIBPREFIX)freetype ;
|
|||
# Define FT2_BUILD_INCLUDE to point to your build-specific directory.
|
||||
# This is prepended to FT2_INCLUDE_DIR. It can be used to specify
|
||||
# the location of a custom <ft2build.h> which will point to custom
|
||||
# versions of "ftmodule.h" and "ftoption.h", for example.
|
||||
# versions of `ftmodule.h' and `ftoption.h', for example.
|
||||
#
|
||||
FT2_BUILD_INCLUDE ?= ;
|
||||
|
||||
# The list of modules to compile on any given build of the library.
|
||||
# By default, this will contain _all_ modules defined in FT2_SRC_DIR.
|
||||
#
|
||||
# IMPORTANT: You'll need to change the content of "ftmodule.h" as well
|
||||
# IMPORTANT: You'll need to change the content of `ftmodule.h' as well
|
||||
# if you modify this list or provide your own.
|
||||
#
|
||||
FT2_COMPONENTS ?= autofit # auto-fitter
|
||||
|
@ -122,7 +122,7 @@ if $(DEBUG_HINTER)
|
|||
}
|
||||
|
||||
|
||||
# We need "freetype2/include" in the current include path in order to
|
||||
# We need `freetype2/include' in the current include path in order to
|
||||
# compile any part of FreeType 2.
|
||||
#
|
||||
HDRS += $(FT2_INCLUDE) ;
|
||||
|
@ -143,13 +143,13 @@ HDRMACRO [ FT2_SubDir include freetype config ftheader.h ] ;
|
|||
HDRMACRO [ FT2_SubDir include freetype internal internal.h ] ;
|
||||
|
||||
|
||||
# Now include the Jamfile in "freetype2/src", used to drive the compilation
|
||||
# Now include the Jamfile in `freetype2/src', used to drive the compilation
|
||||
# of each FreeType 2 component and/or module.
|
||||
#
|
||||
SubInclude FT2_TOP $(FT2_SRC_DIR) ;
|
||||
|
||||
# handle the generation of the "ftexport.sym" file which contain the list
|
||||
# of exported symbols. This can be used on Unix by libtool
|
||||
# Handle the generation of the `ftexport.sym' file which contain the list
|
||||
# of exported symbols. This can be used on Unix by libtool.
|
||||
#
|
||||
SubInclude FT2_TOP $(FT2_SRC_DIR) tools ;
|
||||
|
||||
|
|
|
@ -1,17 +1,21 @@
|
|||
/* this little program is used to parse the FreeType headers and
|
||||
* find the declaration of all public API. This is easy, because
|
||||
/*
|
||||
* This little program is used to parse the FreeType headers and
|
||||
* find the declaration of all public API. This is easy, because
|
||||
* they all look like the following:
|
||||
*
|
||||
* FT_EXPORT( return_type )
|
||||
* function_name( function arguments );
|
||||
*
|
||||
* you must pass it the list of header files as arguments, wildcards
|
||||
* accepted if you're using GCC on Windows
|
||||
* You must pass the list of header files as arguments. Wildcards are
|
||||
* accepted if you are using GCC for compilation (and probably by
|
||||
* other compilers too).
|
||||
*
|
||||
* Author: David Turner
|
||||
* Author: David Turner, 2005
|
||||
*
|
||||
* This code is explicitly placed into the public domain.
|
||||
*
|
||||
* This code is explicitely placed in the public domain
|
||||
*/
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
Loading…
Reference in New Issue