Skip to content

Commit

Permalink
Added runtime packages, dpm compile on install support, updated weakr…
Browse files Browse the repository at this point in the history
…ef dependency.
  • Loading branch information
vincentparrett committed Feb 16, 2021
1 parent 4f3b2ef commit 5309a67
Show file tree
Hide file tree
Showing 25 changed files with 5,735 additions and 4 deletions.
21 changes: 17 additions & 4 deletions VSoft.Messaging.dspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"metadata": {
"id": "VSoft.Messaging",
"version": "0.0.3",
"version": "0.1.0",
"description": "VSoft.Messaging is a libary that provides an internal synchronous/asynchronous publish/subscribe messaging system for Delphi applications.",
"authors": "Vincent Parrett",
"projectUrl": "https://github.com/VSoftTechnologies/VSoft.SemanticVersion",
Expand Down Expand Up @@ -77,20 +77,33 @@
"dependencies": [
{
"id": "VSoft.WeakReference",
"version": "[0.0.3,]"
"version": "[0.1.0,]"
}
],
"source": [
{
"src": "src\\**\\*.pas",
"dest": "src",
"flatten": true
"dest": "src"
},
{
"src": "packages\\Rad Studio $compilerWithCodeName$\\VSoft.MessagingR.dpk",
"dest": "packages\\Rad Studio $compilerWithCodeName$"
},
{
"src": "packages\\Rad Studio $compilerWithCodeName$\\VSoft.MessagingR.dproj",
"dest": "packages\\Rad Studio $compilerWithCodeName$"
}
],
"searchPaths": [
{
"path": "src"
}
],
"build": [
{
"id": "Runtime",
"project": ".\\packages\\Rad Studio $compilerWithCodeName$\\VSoft.MessagingR.dproj"
}
]
}
]
Expand Down
42 changes: 42 additions & 0 deletions packages/Rad Studio 10.0 Seattle/VSoft.MessagingR.dpk
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
package VSoft.MessagingR;

{$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}
{$DESCRIPTION 'VSoft.Messaging Runtime for 10.0'}
{$LIBSUFFIX '230'}
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
rtl;

contains
VSoft.Messaging.Channel in '..\..\src\VSoft.Messaging.Channel.pas',
VSoft.Messaging.Dispatchers in '..\..\src\VSoft.Messaging.Dispatchers.pas',
VSoft.Messaging.Internal in '..\..\src\VSoft.Messaging.Internal.pas',
VSoft.Messaging in '..\..\src\VSoft.Messaging.pas';

end.

0 comments on commit 5309a67

Please sign in to comment.