Working With Only Free Pascal - afuriza/kyoukai_framework GitHub Wiki

How to compile with Free Pascal

  1. Create a file with name extra.cfg
  2. Type this
#Language
-FUlib/
-O3 


# Kyoukai Package Unit Paths
# You can change the path, it depends on where's your Kyoukai location
# Example: -Fi/home/afuriza/kyoukai/src/inc/
#          -Fu/home/afuriza/kyoukai/src/units/standard/
#          -Fu/home/afuriza/kyoukai/src/units/other/
-Fi../../src/inc/
-Fu../../src/units/standard/
-Fu../../src/units/other/

-obuild/<project_name>
  1. Compile with command fpc <project_name>.lpr @extra.cfg