summaryrefslogtreecommitdiff
path: root/tuxcmd.dpr
diff options
context:
space:
mode:
authorTomas Bzatek <tbzatek@users.sourceforge.net>2008-06-07 20:34:49 +0200
committerTomas Bzatek <tbzatek@users.sourceforge.net>2008-06-07 20:34:49 +0200
commitecde167da74c86bc047aaf84c5e548cf65a5da98 (patch)
treea015dfda84f28a65811e3aa0d369f8f211ec8c60 /tuxcmd.dpr
downloadtuxcmd-0.6.36.tar.xz
Diffstat (limited to 'tuxcmd.dpr')
-rw-r--r--tuxcmd.dpr89
1 files changed, 89 insertions, 0 deletions
diff --git a/tuxcmd.dpr b/tuxcmd.dpr
new file mode 100644
index 0000000..f823809
--- /dev/null
+++ b/tuxcmd.dpr
@@ -0,0 +1,89 @@
+(*
+ Tux Commander - an open-source file manager with 2 panels side by side written for GTK2
+ Copyright (C) 2007 by Tomas Bzatek <tbzatek@users.sourceforge.net>
+ Check for updates on tuxcmd.sourceforge.net
+
+ 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 2 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, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+*)
+
+program tuxcmd;
+
+uses
+ {$IFDEF __FPC__}
+ cthreads,
+ {$ENDIF}
+ UGTKLoader in 'UGTKLoader.pas',
+ GTKForms,
+ UConfig in 'UConfig.pas',
+ UGnome in 'UGnome.pas',
+ UMain in 'UMain.pas' {FMain},
+ UCore in 'UCore.pas',
+ UEngines in 'UEngines.pas',
+ USelect in 'USelect.pas' {FSelect},
+ URemoteWait in 'URemoteWait.pas' {FRemoteWait},
+ UDirDelete in 'UDirDelete.pas' {FDirDelete},
+ UProgress in 'UProgress.pas' {FProgress},
+ UCopyMove in 'UCopyMove.pas' {FCopyMove},
+ UOverwrite in 'UOverwrite.pas' {FOverwrite},
+ UCoreUtils in 'UCoreUtils.pas',
+ ULocale in 'ULocale.pas',
+ UChecksum in 'UChecksum.pas' {FChecksum},
+ UChecksumDruid in 'UChecksumDruid.pas' {FChecksumDruid},
+ USplitFile in 'USplitFile.pas' {FSplitFile},
+ UFileAssoc in 'UFileAssoc.pas',
+ UFileTypeSettings in 'UFileTypeSettings.pas' {FFileTypeSettings},
+ UChmod in 'UChmod.pas' {FChmod},
+ UChown in 'UChown.pas' {FChown},
+ UCoreClasses in 'UCoreClasses.pas',
+ USymlink in 'USymlink.pas' {FSymlink},
+ UPreferences in 'UPreferences.pas' {FPreferences},
+ UViewer in 'UViewer.pas' {FViewer},
+ UTestPlugin in 'UTestPlugin.pas',
+ UMounterPrefs in 'UMounterPrefs.pas',
+ UColumns in 'UColumns.pas',
+ ModuleLoader in 'vfs/ModuleLoader.pas',
+ UVFSCore in 'vfs/UVFSCore.pas',
+ uVFSprototypes in 'vfs/uVFSprototypes.pas',
+ UToolTips in 'UToolTips.pas',
+ ULogin in 'ULogin.pas',
+ UConnectionManager in 'UConnectionManager.pas',
+ UConnectionProperties in 'UConnectionProperties.pas',
+ USearch in 'USearch.pas',
+ UGlibThreads in 'UGlibThreads.pas',
+ URunFromVFS in 'URunFromVFS.pas',
+ UGlibC_compat in 'UGlibC_compat.pas',
+ USetPassword in 'USetPassword.pas',
+ UTranslation_EN in 'translations/UTranslation_EN.pas',
+ UTranslation_CZ in 'translations/UTranslation_CZ.pas',
+ UTranslation_RU in 'translations/UTranslation_RU.pas',
+ UTranslation_DE in 'translations/UTranslation_DE.pas',
+ UTranslation_SV in 'translations/UTranslation_SV.pas',
+ UTranslation_FR in 'translations/UTranslation_FR.pas',
+ UTranslation_ES in 'translations/UTranslation_ES.pas',
+ UTranslation_PL in 'translations/UTranslation_PL.pas',
+ UTranslation_UA in 'translations/UTranslation_UA.pas',
+ UTranslation_SR in 'translations/UTranslation_SR.pas',
+ UTranslation_HU in 'translations/UTranslation_HU.pas';
+
+
+{$IFNDEF __FPC__}
+ {$R *.res}
+{$ENDIF}
+
+begin
+ Application.Initialize;
+ Application.CreateForm(TFMain, FMain);
+ Application.Run;
+end.