version information in the CMakeLists.txt are now available in the code
This commit is contained in:
@@ -89,11 +89,9 @@ namespace OGLFT {
|
||||
FT_Face ft_face;
|
||||
|
||||
FT_Error error = FT_New_Face( Library::instance(), filename, 0, &ft_face );
|
||||
assert (0);
|
||||
std::cerr << "FreeType error code: " << error << std::endl;
|
||||
|
||||
|
||||
if ( error != 0 ) {
|
||||
std::cerr << "FreeType error code: " << error << std::endl;
|
||||
std::cerr << "FreeType error code: " << error << std::endl;
|
||||
valid_ = false;
|
||||
return;
|
||||
}
|
||||
@@ -1356,8 +1354,6 @@ namespace OGLFT {
|
||||
{
|
||||
if ( !isValid() ) return;
|
||||
|
||||
std::cerr << "Raster is valid!" << std::endl;
|
||||
|
||||
init();
|
||||
}
|
||||
|
||||
|
||||
@@ -71,7 +71,7 @@ extern "C" {
|
||||
* uintXX_t (from inttypes.h), you may need to define things by hand
|
||||
* for your system:
|
||||
*/
|
||||
#if 1
|
||||
#if WIN32
|
||||
typedef unsigned char u_int8_t; /* 1-byte (8-bits) */
|
||||
typedef unsigned int u_int32_t; /* 4-bytes (32-bits) */
|
||||
typedef unsigned long long u_int64_t; /* 8-bytes (64-bits) */
|
||||
|
||||
Reference in New Issue
Block a user