hedgewars/SDLh.pas
changeset 15316 3e34a014b6e8
parent 15314 fe705efbfc52
child 15318 360c24fe6071
equal deleted inserted replaced
15315:90f9a0eac3ae 15316:3e34a014b6e8
    54     type PByte = ^Byte;
    54     type PByte = ^Byte;
    55     type PInteger = ^Integer;
    55     type PInteger = ^Integer;
    56     type PLongInt = ^LongInt;
    56     type PLongInt = ^LongInt;
    57 {$ENDIF}
    57 {$ENDIF}
    58 
    58 
       
    59 {$IFDEF WIN32_VCPKG}
       
    60 {$IFDEF DEBUG}
       
    61     {$DEFINE VCPKG_DEBUG}
       
    62 {$ENDIF}
       
    63 {$ENDIF}
    59 
    64 
    60 (*  SDL  *)
    65 (*  SDL  *)
    61 const
    66 const
    62 {$IFDEF WINDOWS}
    67 {$IFDEF WINDOWS}
    63     SDLLibName = 'SDL2.dll';
    68     SDLLibName = {$IFDEF VCPKG_DEBUG}'SDL2d.dll'{$ELSE}'SDL2.dll'{$ENDIF};
    64     SDL_TTFLibName = 'SDL2_ttf.dll';
    69     SDL_TTFLibName = 'SDL2_ttf.dll';
    65     SDL_MixerLibName = 'SDL2_mixer.dll';
    70     SDL_MixerLibName = 'SDL2_mixer.dll';
    66     SDL_ImageLibName = 'SDL2_image.dll';
    71     SDL_ImageLibName = 'SDL2_image.dll';
    67     SDL_NetLibName = 'SDL2_net.dll';
    72     SDL_NetLibName = 'SDL2_net.dll';
    68 {$ELSE}
    73 {$ELSE}