Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit 41770b8

Browse files
author
Fraser J. Gordon
committed
Remember to commit the makefile changes...
1 parent 37cd5b0 commit 41770b8

File tree

5 files changed

+22
-1
lines changed

5 files changed

+22
-1
lines changed

engine/Android.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ LOCAL_SRC_FILES := $(addprefix src/,\
3333
regex.cpp \
3434
resolution.cpp \
3535
scriptpt.cpp \
36-
scrolbar.cpp scrollbardraw.cpp sellst.cpp \
36+
scrolbar.cpp scrollbardraw.cpp segment.cpp sellst.cpp \
3737
stack.cpp \
3838
stack2.cpp \
3939
stack3.cpp \

engine/Makefile.kernel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ SOURCES=\
3030
scriptpt.cpp \
3131
scrolbar.cpp \
3232
scrollbardraw.cpp \
33+
segment.cpp \
3334
sellst.cpp \
3435
stack.cpp \
3536
stack2.cpp \

engine/engine-mobile.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,7 @@
249249
4DD3E17B1040BDAF00CAC7EF /* libz.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DD3E17A1040BDAF00CAC7EF /* libz.dylib */; };
250250
4DE5E7EB174BBE89001AB76D /* uuid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4DE5E7E6174BBE64001AB76D /* uuid.cpp */; };
251251
4DE9499E142762490072D9C6 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DE9499D142762490072D9C6 /* CoreText.framework */; };
252+
722A7EEF191B8B6B008C7C4A /* segment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 722A7EED191B8B6B008C7C4A /* segment.cpp */; };
252253
7231B08718CF3FFF00295AE6 /* graphicscontext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7231B08518CF3FFF00295AE6 /* graphicscontext.cpp */; };
253254
7231B08A18CF40B600295AE6 /* imagelist.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7231B08818CF40B600295AE6 /* imagelist.cpp */; };
254255
7268ED8E1848C1F400D10598 /* exec-misc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE94594A17621812008408DE /* exec-misc.cpp */; };
@@ -927,6 +928,8 @@
927928
4DFFC8EE13DD909F006233A4 /* name.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = name.cpp; path = src/name.cpp; sourceTree = "<group>"; };
928929
4DFFC8F213DD90AF006233A4 /* objectpropsets.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = objectpropsets.cpp; path = src/objectpropsets.cpp; sourceTree = "<group>"; };
929930
4DFFC8F613DD90CE006233A4 /* syscfdate.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = syscfdate.cpp; path = src/syscfdate.cpp; sourceTree = "<group>"; };
931+
722A7EED191B8B6B008C7C4A /* segment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = segment.cpp; path = src/segment.cpp; sourceTree = "<group>"; };
932+
722A7EEE191B8B6B008C7C4A /* segment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = segment.h; path = src/segment.h; sourceTree = "<group>"; };
930933
7231B08518CF3FFF00295AE6 /* graphicscontext.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = graphicscontext.cpp; path = src/graphicscontext.cpp; sourceTree = "<group>"; };
931934
7231B08618CF3FFF00295AE6 /* graphicscontext.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = graphicscontext.h; path = src/graphicscontext.h; sourceTree = "<group>"; };
932935
7231B08818CF40B600295AE6 /* imagelist.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = imagelist.cpp; path = src/imagelist.cpp; sourceTree = "<group>"; };
@@ -1687,6 +1690,8 @@
16871690
E81AC13B170C90C600315861 /* Core - Objects */ = {
16881691
isa = PBXGroup;
16891692
children = (
1693+
722A7EED191B8B6B008C7C4A /* segment.cpp */,
1694+
722A7EEE191B8B6B008C7C4A /* segment.h */,
16901695
4DD3DDB21040AC1A00CAC7EF /* aclip.cpp */,
16911696
4DD3DDB11040AC1A00CAC7EF /* aclip.h */,
16921697
4DD3DDB01040AC1A00CAC7EF /* block.cpp */,
@@ -2531,6 +2536,7 @@
25312536
E877A6181850D85F008FDE2C /* resolution.cpp in Sources */,
25322537
7231B08718CF3FFF00295AE6 /* graphicscontext.cpp in Sources */,
25332538
7231B08A18CF40B600295AE6 /* imagelist.cpp in Sources */,
2539+
722A7EEF191B8B6B008C7C4A /* segment.cpp in Sources */,
25342540
);
25352541
runOnlyForDeploymentPostprocessing = 0;
25362542
};

engine/engine.xcodeproj/project.pbxproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,7 @@
511511
7278F6401843A2B100E35A65 /* libicuuc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 721CAAC718351E7400858545 /* libicuuc.a */; };
512512
72876DE618CF32C400C20405 /* libskia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 76F0CC9018CA28E500C01A67 /* libskia.a */; };
513513
72876DE718CF32D700C20405 /* libskia.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 76F0CC9018CA28E500C01A67 /* libskia.a */; };
514+
72C28AFA1911300D007F2AA0 /* segment.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72C28AF91911300D007F2AA0 /* segment.cpp */; };
514515
72D6032418476FC90022379C /* libicudata.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 721CAAC218351E7400858545 /* libicudata.a */; };
515516
72D6032518476FC90022379C /* libicui18n.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 721CAAC018351E1800858545 /* libicui18n.a */; };
516517
72D6032618476FC90022379C /* libicuio.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 721CAAC318351E7400858545 /* libicuio.a */; };
@@ -1500,6 +1501,8 @@
15001501
721CAAC618351E7400858545 /* libicutu.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libicutu.a; path = ../prebuilt/lib/mac/libicutu.a; sourceTree = "<group>"; };
15011502
721CAAC718351E7400858545 /* libicuuc.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libicuuc.a; path = ../prebuilt/lib/mac/libicuuc.a; sourceTree = "<group>"; };
15021503
7238DF4E1848B189007EA049 /* MCBlock.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = MCBlock.h; path = src/MCBlock.h; sourceTree = "<group>"; };
1504+
72C28AF819112FDE007F2AA0 /* segment.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = segment.h; path = src/segment.h; sourceTree = "<group>"; };
1505+
72C28AF91911300D007F2AA0 /* segment.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = segment.cpp; path = src/segment.cpp; sourceTree = "<group>"; };
15031506
72D6038218477E560022379C /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.6.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
15041507
72D6038418477E5C0022379C /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
15051508
7635171B182A8D1F00C31FA2 /* image_rep_densitymapped.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = image_rep_densitymapped.cpp; path = src/image_rep_densitymapped.cpp; sourceTree = "<group>"; };
@@ -2801,6 +2804,8 @@
28012804
4D587E670B8096FD00200116 /* scrolbar.cpp */,
28022805
4D587E0E0B8096E600200116 /* scrolbar.h */,
28032806
4D587E770B8096FD00200116 /* scrollbardraw.cpp */,
2807+
72C28AF819112FDE007F2AA0 /* segment.h */,
2808+
72C28AF91911300D007F2AA0 /* segment.cpp */,
28042809
4D587E8E0B8096FD00200116 /* sellst.cpp */,
28052810
4D587E250B8096E600200116 /* sellst.h */,
28062811
4D587E940B8096FD00200116 /* stack.cpp */,
@@ -3901,6 +3906,7 @@
39013906
763FF4EA18522CC100B45FBA /* image_rep_resampled.cpp in Sources */,
39023907
E82206E1184F810A00117D10 /* resolution.cpp in Sources */,
39033908
E8238D1D188818EA0068154B /* osxhighdpi.mm in Sources */,
3909+
72C28AFA1911300D007F2AA0 /* segment.cpp in Sources */,
39043910
);
39053911
runOnlyForDeploymentPostprocessing = 0;
39063912
};

engine/kernel.vcproj

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,14 @@
539539
RelativePath="src\scrollbardraw.cpp"
540540
>
541541
</File>
542+
<File
543+
RelativePath=".\src\segment.cpp"
544+
>
545+
</File>
546+
<File
547+
RelativePath=".\src\segment.h"
548+
>
549+
</File>
542550
<File
543551
RelativePath="src\sellst.cpp"
544552
>

0 commit comments

Comments
 (0)