This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require('fpdf.php'); | |
class TextNormalizerFPDF extends FPDF | |
{ | |
function __construct() | |
{ | |
parent::__construct(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workspace "sfml_project" | |
configurations { "Debug", "Release" } | |
location "build" | |
project "sfml_project" | |
kind "ConsoleApp" | |
language "C++" | |
targetdir "bin/%{cfg.buildcfg}" | |
files { "src/**.*" } |