Skip to content

Commit 9ccf9d5

Browse files
committed
This should fix any case-sensitive build issues, especially on macOS; incorprates and fixes #2019
1 parent 7f6dfba commit 9ccf9d5

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

include/cinder/ImageSourceFileWic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#pragma once
2424

2525
#include "cinder/Cinder.h"
26-
#include "cinder/ImageIO.h"
26+
#include "cinder/ImageIo.h"
2727
#include "cinder/Exception.h"
2828
#include "cinder/msw/CinderMsw.h"
2929

samples/Renderer2dBasic/src/Renderer2dApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#include "cinder/cocoa/CinderCocoa.h"
55
#include <CoreGraphics/CoreGraphics.h>
66
#elif defined( CINDER_MSW )
7-
#include "cinder/msw/CinderMswGdiplus.h"
7+
#include "cinder/msw/CinderMswGdiPlus.h"
88
#endif
99

1010
#include "Resources.h"

samples/_opengl/VboMesh/src/VboMeshApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#include "cinder/app/App.h"
88
#include "cinder/app/RendererGl.h"
99
#include "cinder/gl/gl.h"
10-
#include "cinder/GeomIO.h"
10+
#include "cinder/GeomIo.h"
1111
#include "cinder/ImageIo.h"
1212
#include "cinder/CameraUi.h"
1313

samples/_timeline/ImageAccordion/src/ImageAccordionApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#include "cinder/app/App.h"
1414
#include "cinder/app/RendererGl.h"
1515
#include "cinder/gl/gl.h"
16-
#include "cinder/ImageIO.h"
16+
#include "cinder/ImageIo.h"
1717
#include "cinder/Rand.h"
1818
#include "cinder/Timeline.h"
1919

samples/perlinTest/xcode/perlinTest.xcodeproj/project.pbxproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
5323E6B20EAFCA74003A9687 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5323E6B10EAFCA74003A9687 /* CoreVideo.framework */; };
2020
5323E6B60EAFCA7E003A9687 /* QTKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5323E6B50EAFCA7E003A9687 /* QTKit.framework */; };
2121
8D11072F0486CEB800E47090 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1058C7A1FEA54F0111CA2CBB /* Cocoa.framework */; };
22-
971313AC4FD14339A566FF02 /* PerlinTestApp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACC9561D7279446A9B5D6E9D /* PerlinTestApp.cpp */; };
22+
971313AC4FD14339A566FF02 /* perlinTestApp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ACC9561D7279446A9B5D6E9D /* perlinTestApp.cpp */; };
2323
9ABAF2665A1A461DB612659A /* Cairo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1012F7F7CA041B796694825 /* Cairo.cpp */; };
2424
CBB624289949460082066DD6 /* CinderApp.icns in Resources */ = {isa = PBXBuildFile; fileRef = 4B9EA6670FB94B019CB80224 /* CinderApp.icns */; };
2525
/* End PBXBuildFile section */
@@ -45,8 +45,8 @@
4545
8D1107320486CEB800E47090 /* PerlinTest.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = PerlinTest.app; sourceTree = BUILT_PRODUCTS_DIR; };
4646
A1012F7F7CA041B796694825 /* Cairo.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.cpp; name = Cairo.cpp; path = ../../../blocks/Cairo/src/Cairo.cpp; sourceTree = "<group>"; };
4747
A79F92F014ED4C5484508062 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
48-
ACC9561D7279446A9B5D6E9D /* PerlinTestApp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.cpp; name = PerlinTestApp.cpp; path = ../src/PerlinTestApp.cpp; sourceTree = "<group>"; };
49-
E3FE71DEC3104A3AB8011460 /* PerlinTest_Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = "\"\""; path = PerlinTest_Prefix.pch; sourceTree = "<group>"; };
48+
ACC9561D7279446A9B5D6E9D /* perlinTestApp.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.cpp; name = perlinTestApp.cpp; path = ../src/perlinTestApp.cpp; sourceTree = "<group>"; };
49+
E3FE71DEC3104A3AB8011460 /* perlinTest_Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = "\"\""; path = perlinTest_Prefix.pch; sourceTree = "<group>"; };
5050
/* End PBXFileReference section */
5151

5252
/* Begin PBXFrameworksBuildPhase section */
@@ -83,7 +83,7 @@
8383
080E96DDFE201D6D7F000001 /* Source */ = {
8484
isa = PBXGroup;
8585
children = (
86-
ACC9561D7279446A9B5D6E9D /* PerlinTestApp.cpp */,
86+
ACC9561D7279446A9B5D6E9D /* perlinTestApp.cpp */,
8787
);
8888
name = Source;
8989
sourceTree = "<group>";
@@ -137,7 +137,7 @@
137137
isa = PBXGroup;
138138
children = (
139139
52D75384003B4E658A882A95 /* Resources.h */,
140-
E3FE71DEC3104A3AB8011460 /* PerlinTest_Prefix.pch */,
140+
E3FE71DEC3104A3AB8011460 /* perlinTest_Prefix.pch */,
141141
);
142142
name = Headers;
143143
sourceTree = "<group>";
@@ -268,7 +268,7 @@
268268
isa = PBXSourcesBuildPhase;
269269
buildActionMask = 2147483647;
270270
files = (
271-
971313AC4FD14339A566FF02 /* PerlinTestApp.cpp in Sources */,
271+
971313AC4FD14339A566FF02 /* perlinTestApp.cpp in Sources */,
272272
9ABAF2665A1A461DB612659A /* Cairo.cpp in Sources */,
273273
);
274274
runOnlyForDeploymentPostprocessing = 0;
@@ -286,7 +286,7 @@
286286
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
287287
GCC_OPTIMIZATION_LEVEL = 0;
288288
GCC_PRECOMPILE_PREFIX_HEADER = YES;
289-
GCC_PREFIX_HEADER = PerlinTest_Prefix.pch;
289+
GCC_PREFIX_HEADER = perlinTest_Prefix.pch;
290290
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
291291
INFOPLIST_FILE = Info.plist;
292292
INSTALL_PATH = "$(HOME)/Applications";
@@ -313,7 +313,7 @@
313313
GCC_INLINES_ARE_PRIVATE_EXTERN = YES;
314314
GCC_OPTIMIZATION_LEVEL = 3;
315315
GCC_PRECOMPILE_PREFIX_HEADER = YES;
316-
GCC_PREFIX_HEADER = PerlinTest_Prefix.pch;
316+
GCC_PREFIX_HEADER = perlinTest_Prefix.pch;
317317
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
318318
INFOPLIST_FILE = Info.plist;
319319
INSTALL_PATH = "$(HOME)/Applications";

src/cinder/app/winrt/AppWinRt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include "cinder/app/winrt/AppWinRt.h"
2828
#include "cinder/app/winrt/WindowImplWinRt.h"
29-
#include "cinder/winrt/WinRtUtils.h"
29+
#include "cinder/winrt/WinRTUtils.h"
3030
#include "cinder/app/winrt/CinderFrameworkView.h"
3131
#include "cinder/app/RendererGl.h"
3232
#include "cinder/Log.h"

src/cinder/app/winrt/WindowImplWinRt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
#include "cinder/app/winrt/WindowImplWinRt.h"
2828
#include "cinder/app/winrt/AppWinRt.h"
29-
#include "cinder/winrt/WinRtUtils.h"
29+
#include "cinder/winrt/WinRTUtils.h"
3030

3131
using namespace Windows::ApplicationModel;
3232
using namespace Windows::ApplicationModel::Core;

test/imageProcessing/src/imageProcessingApp.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include "cinder/app/App.h"
22
#include "cinder/app/RendererGl.h"
33
#include "cinder/gl/gl.h"
4-
#include "cinder/ip/flip.h"
4+
#include "cinder/ip/Flip.h"
55

66
using namespace ci;
77
using namespace ci::app;

0 commit comments

Comments
 (0)