Browse Source

Updated project build

sganz 7 months ago
parent
commit
d1ff8fe090
3 changed files with 13 additions and 3 deletions
  1. 10 1
      bgracontrols.lpk
  2. 2 1
      bgracontrols.pas
  3. 1 1
      superspinnercommon.pas

+ 10 - 1
bgracontrols.lpk

@@ -34,7 +34,7 @@
     <Description Value="BGRA Controls is a set of graphical UI elements that you can use with Lazarus LCL applications."/>
     <License Value="Modified LGPL"/>
     <Version Major="9" Release="1" Build="7"/>
-    <Files Count="82">
+    <Files Count="84">
       <Item1>
         <Filename Value="atshapelinebgra.pas"/>
         <HasRegisterProc Value="True"/>
@@ -433,6 +433,15 @@
         <Filename Value="bgraformatui.pas"/>
         <UnitName Value="BGRAFormatUI"/>
       </Item82>
+      <Item83>
+        <Filename Value="superspinner.pas"/>
+        <HasRegisterProc Value="True"/>
+        <UnitName Value="superspinner"/>
+      </Item83>
+      <Item84>
+        <Filename Value="superspinnercommon.pas"/>
+        <UnitName Value="superspinnercommon"/>
+      </Item84>
     </Files>
     <CompatibilityMode Value="True"/>
     <LazDoc Paths="fpdoc"/>

+ 2 - 1
bgracontrols.pas

@@ -26,7 +26,7 @@ uses
   bgrasvgimagelistform, BCLeaLCDDisplay, BCLeaLED, BCLeaQLED, BCLeaRingSlider, 
   BCLeaSelector, BCLeaTheme, BCLeaLCDDisplay_EditorRegister, BCLeaBoard, 
   BCLeaEngrave, supergauge, supergaugecommon, BGRADialogs, BGRAFormatUI, 
-  LazarusPackageIntf;
+  superspinner, superspinnercommon, LazarusPackageIntf;
 
 implementation
 
@@ -96,6 +96,7 @@ begin
   RegisterUnit('BCLeaEngrave', @BCLeaEngrave.Register);
   RegisterUnit('supergauge', @supergauge.Register);
   RegisterUnit('BGRADialogs', @BGRADialogs.Register);
+  RegisterUnit('superspinner', @superspinner.Register);
 end;
 
 initialization

+ 1 - 1
superspinnercommon.pas

@@ -20,7 +20,7 @@ unit superspinnercommon;
 interface
 uses
   Classes, SysUtils, {$IFDEF FPC}LResources,{$ELSE}Types, {$ENDIF} Forms, Controls, Graphics, Dialogs,
-  BGRABitmap, BGRABitmapTypes, BGRAGradients, BCTypes;
+  BGRABitmap, BGRABitmapTypes, BGRAGradients;
 
 type
   TSSPositionStyle = (psNone, psFilledCircle, psHollowCircle, psShaded, psIndentCircle, psLines);