equal
deleted
inserted
replaced
3 unit uPhysFSLayer; |
3 unit uPhysFSLayer; |
4 |
4 |
5 interface |
5 interface |
6 uses SDLh, LuaPas; |
6 uses SDLh, LuaPas; |
7 |
7 |
8 const PhysfsLibName = {$IFDEF PHYSFS_INTERNAL}'libhwphysfs'{$ELSE}'libphysfs'{$ENDIF}; |
8 const PhysfsLibName = |
9 const PhyslayerLibName = 'libphyslayer'; |
9 {$IFDEF PHYSFS_INTERNAL} |
|
10 'libhwphysfs' |
|
11 {$ELSE} |
|
12 {$IFDEF WIN32_VCPKG}'physfs'{$ELSE}'libphysfs'{$ENDIF}; |
|
13 {$ENDIF} |
|
14 const PhyslayerLibName = |
|
15 {$IFDEF WIN32_VCPKG}'physlayer'{$ELSE}'libphyslayer'{$ENDIF}; |
10 |
16 |
11 {$IFNDEF WIN32} |
17 {$IFNDEF WIN32} |
12 {$linklib physfs} |
18 {$linklib physfs} |
13 {$linklib physlayer} |
19 {$linklib physlayer} |
14 {$ENDIF} |
20 {$ENDIF} |