Working With Only Free Pascal - afuriza/kyoukai_framework GitHub Wiki
How to compile with Free Pascal
- Create a file with name
extra.cfg
- 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>
- Compile with command
fpc <project_name>.lpr @extra.cfg