X-Git-Url: http://deadsoftware.ru/gitweb?a=blobdiff_plain;f=src%2Fgame%2FDoom2DF.dpr;h=17f17b77fb2922dff852b8e48a958e8a61ca4ecf;hb=cc7f0a9c9ed703e0c9f5126b6cbf8015f39192fb;hp=ac174d86c59a4e1139f7d18bd9a984b6e9376c87;hpb=ac201b02f10ef558087d50f6b03b4519ab567558;p=d2df-sdl.git diff --git a/src/game/Doom2DF.dpr b/src/game/Doom2DF.dpr index ac174d8..17f17b7 100644 --- a/src/game/Doom2DF.dpr +++ b/src/game/Doom2DF.dpr @@ -1,3 +1,18 @@ +(* Copyright (C) DooM 2D:Forever Developers + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + *) {$MODE DELPHI} program Doom2DF; {$IFNDEF HEADLESS} @@ -24,6 +39,7 @@ program Doom2DF; {$ENDIF} uses + conbuf in '../shared/conbuf.pas', GL, GLExt, SDL2 in '../lib/sdl2/sdl2.pas', @@ -87,7 +103,13 @@ uses {$ENDIF} BinEditor in '../shared/BinEditor.pas', g_panel in 'g_panel.pas', - g_language in 'g_language.pas'; + g_language in 'g_language.pas', + ImagingTypes, + Imaging, + ImagingUtility, + lua in '../lib/lua/lua.pas', + lualib in '../lib/lua/lualib.pas', + lauxlib in '../lib/lua/lauxlib.pas'; {$IFDEF WINDOWS} {$R *.res} @@ -98,7 +120,11 @@ var f: Integer; noct: Boolean = false; begin - for f := 1 to ParamCount do if ParamStr(f) = '--gdb' then noct := true; + for f := 1 to ParamCount do + begin + if ParamStr(f) = '--gdb' then noct := true + else if ParamStr(f) = '--log' then conbufDumpToStdOut := true; + end; if noct then Main() else