Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hunsche committed Oct 2, 2018
1 parent 36999f1 commit 6a9f897
Show file tree
Hide file tree
Showing 5 changed files with 661 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
modules/
dist/
static/
**/Win32/
**/Win64/
**/Linux64/
**/__history/
**/__recovery/
src/*.~*
*.res
*.exe
*.dll
*.bpl
*.bpi
*.dcp
*.so
*.apk
*.drc
*.map
*.dres
*.rsm
*.tds
*.dcu
*.lib
*.a
*.o
*.ocx
*.local
*.identcache
*.projdata
*.tvsconfig
*.dsk
*.dcu
*.exe
*.so
*.~*
*.a
*.stat
13 changes: 13 additions & 0 deletions boss.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"name": "jhonson",
"description": "",
"version": "1.0.0",
"private": false,
"homepage": "",
"mainsrc": "src/",
"supported": "xe+",
"dprojFile": "",
"dependencies": {
"github.com/HashLoad/horse": "^1.2.2"
}
}
37 changes: 37 additions & 0 deletions jhonson.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
package jhonson;

{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO OFF}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION OFF}
{$OVERFLOWCHECKS OFF}
{$RANGECHECKS OFF}
{$REFERENCEINFO ON}
{$SAFEDIVIDE OFF}
{$STACKFRAMES ON}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST OFF}
{$MINENUMSIZE 1}
{$IMAGEBASE $400000}
{$DEFINE DEBUG}
{$ENDIF IMPLICITBUILDING}
{$RUNONLY}
{$IMPLICITBUILD ON}

requires
rtl;

contains
Jhonson in 'src\Jhonson.pas';

end.
Loading

0 comments on commit 6a9f897

Please sign in to comment.