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

Commit bdc90fe

Browse files
committed
[[ PixelScale ]] Add resolution.cpp to build files for iOS, Android & Linux
1 parent 5e08d83 commit bdc90fe

File tree

4 files changed

+25
-8
lines changed

4 files changed

+25
-8
lines changed

engine/Android.mk

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,11 @@ LOCAL_SRC_FILES := $(addprefix src/,\
3030
keywords.cpp line.cpp literal.cpp magnify.cpp mcerror.cpp \
3131
mcio.cpp mcstring.cpp mctheme.cpp newobj.cpp mcutility.cpp \
3232
object.cpp objectpropsets.cpp objptr.cpp operator.cpp paragraf.cpp paragrafattr.cpp param.cpp \
33-
property.cpp pickle.cpp regex.cpp \
34-
scriptpt.cpp scrolbar.cpp scrollbardraw.cpp sellst.cpp \
33+
property.cpp pickle.cpp \
34+
regex.cpp \
35+
resolution.cpp \
36+
scriptpt.cpp \
37+
scrolbar.cpp scrollbardraw.cpp sellst.cpp \
3538
stack.cpp \
3639
stack2.cpp \
3740
stack3.cpp \

engine/Makefile.kernel

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,13 @@ SOURCES=\
2424
itransform.cpp keywords.cpp line.cpp literal.cpp magnify.cpp mcerror.cpp \
2525
mcio.cpp mcstring.cpp mctheme.cpp newobj.cpp \
2626
object.cpp objptr.cpp operator.cpp paragraf.cpp param.cpp \
27-
property.cpp pickle.cpp regex.cpp \
28-
scriptpt.cpp scrolbar.cpp scrollbardraw.cpp sellst.cpp \
27+
property.cpp pickle.cpp \
28+
regex.cpp \
29+
resolution.cpp \
30+
scriptpt.cpp \
31+
scrolbar.cpp \
32+
scrollbardraw.cpp \
33+
sellst.cpp \
2934
stack.cpp \
3035
stack2.cpp \
3136
stack3.cpp \

engine/Makefile.kernel-server

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,13 @@ SOURCES=\
2222
itransform.cpp keywords.cpp line.cpp literal.cpp magnify.cpp mcerror.cpp \
2323
mcio.cpp mcstring.cpp mctheme.cpp newobj.cpp \
2424
object.cpp objptr.cpp operator.cpp paragraf.cpp param.cpp \
25-
property.cpp pickle.cpp regex.cpp \
26-
scriptpt.cpp scrolbar.cpp scrollbardraw.cpp sellst.cpp \
25+
property.cpp pickle.cpp \
26+
regex.cpp \
27+
resolution.cpp \
28+
scriptpt.cpp \
29+
scrolbar.cpp \
30+
scrollbardraw.cpp \
31+
sellst.cpp \
2732
stack.cpp \
2833
stack2.cpp \
2934
stack3.cpp \

engine/engine-mobile.xcodeproj/project.pbxproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,6 +265,7 @@
265265
E84A254E1680BFFD00EA7ACC /* image_rep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E84A254C1680BFF600EA7ACC /* image_rep.cpp */; };
266266
E85A91BF16C2B4D300C07FA9 /* stackcache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E85A91BE16C2B4D300C07FA9 /* stackcache.cpp */; };
267267
E86481931439BCE100775960 /* StoreKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E86481921439BCE100775960 /* StoreKit.framework */; };
268+
E877A6181850D85F008FDE2C /* resolution.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E877A6171850D85F008FDE2C /* resolution.cpp */; };
268269
E8AB9053180E9DCD0050A249 /* image_rep_densitymapped.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8AB9052180E9DCD0050A249 /* image_rep_densitymapped.cpp */; };
269270
E8B6EE1417F0A1C900F77E0E /* stackview.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8B6EE1317F0A1C900F77E0E /* stackview.cpp */; };
270271
E8BE6E2A182966BA00D7C604 /* image_rep_resampled.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8BE6E29182966BA00D7C604 /* image_rep_resampled.cpp */; };
@@ -893,6 +894,7 @@
893894
E867E3B4163ECE4D003579AC /* InputControl.java */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.java; path = InputControl.java; sourceTree = "<group>"; };
894895
E8720DE014C46AB80016F645 /* mblandroidjava.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mblandroidjava.h; path = src/mblandroidjava.h; sourceTree = "<group>"; };
895896
E8720DE114C46AF60016F645 /* mblandroidjava.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = mblandroidjava.cpp; path = src/mblandroidjava.cpp; sourceTree = "<group>"; };
897+
E877A6171850D85F008FDE2C /* resolution.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = resolution.cpp; path = src/resolution.cpp; sourceTree = "<group>"; };
896898
E891124A148675C900B554CF /* DialogModule.java */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.java; path = DialogModule.java; sourceTree = "<group>"; };
897899
E89112EB148E73EB00B554CF /* mbldialog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mbldialog.cpp; path = src/mbldialog.cpp; sourceTree = "<group>"; };
898900
E89A45D314EE7603007250AA /* mblnotification.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mblnotification.h; path = src/mblnotification.h; sourceTree = "<group>"; };
@@ -1267,8 +1269,6 @@
12671269
4DD3DDAC1040ABB000CAC7EF /* Sources */ = {
12681270
isa = PBXGroup;
12691271
children = (
1270-
E852D71E1790290500485363 /* graphics_util.h */,
1271-
E852D71D178F103400485363 /* resolution.h */,
12721272
E81AC12D170C8CCE00315861 /* Core - Foundation */,
12731273
E81AC137170C8E1000315861 /* Core - Graphics */,
12741274
E81AC13A170C8F1200315861 /* Core - Language */,
@@ -1320,6 +1320,7 @@
13201320
4DD3DE221040AD0300CAC7EF /* gradient.h */,
13211321
E8C22E71177B2960003785D3 /* graphicscontext.cpp */,
13221322
E8C22E72177B2960003785D3 /* graphicscontext.h */,
1323+
E852D71E1790290500485363 /* graphics_util.h */,
13231324
E8C22E55177B2884003785D3 /* imagelist.cpp */,
13241325
E8C22E56177B2884003785D3 /* imagelist.h */,
13251326
4DD3DE8F1040AD8500CAC7EF /* mctheme.cpp */,
@@ -1338,6 +1339,8 @@
13381339
4D6E5952140833FA00EE960D /* redraw.cpp */,
13391340
4D6E5951140833FA00EE960D /* redraw.h */,
13401341
4D6E5959140834BD00EE960D /* region.h */,
1342+
E877A6171850D85F008FDE2C /* resolution.cpp */,
1343+
E852D71D178F103400485363 /* resolution.h */,
13411344
4DD3DEDD1040ADDD00CAC7EF /* rgb.cpp */,
13421345
4DD3E18D1040BDF000CAC7EF /* surface.cpp */,
13431346
E81AC138170C8EC300315861 /* textlayout.h */,
@@ -2185,6 +2188,7 @@
21852188
E8B6EE1417F0A1C900F77E0E /* stackview.cpp in Sources */,
21862189
E8AB9053180E9DCD0050A249 /* image_rep_densitymapped.cpp in Sources */,
21872190
E8BE6E2A182966BA00D7C604 /* image_rep_resampled.cpp in Sources */,
2191+
E877A6181850D85F008FDE2C /* resolution.cpp in Sources */,
21882192
);
21892193
runOnlyForDeploymentPostprocessing = 0;
21902194
};

0 commit comments

Comments
 (0)