rename include file name from uppercase to lowercase for linux platform

This commit is contained in:
James Chen 2012-02-14 22:41:33 +08:00
parent 3422696145
commit dac63dd2c2
6 changed files with 6 additions and 6 deletions

View File

@ -37,7 +37,7 @@ THE SOFTWARE.
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_MARMALADE)
#include "marmalade/CCAccelerometer_marmalade.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
#include "Linux/CCAccelerometer_linux.h"
#include "linux/CCAccelerometer_linux.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_BADA)
#include "bada/CCAccelerometer_bada.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_QNX)

View File

@ -38,7 +38,7 @@ THE SOFTWARE.
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_MARMALADE)
#include "marmalade/CCApplication_marmalade.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
#include "Linux/CCAplication_linux.h"
#include "linux/CCAplication_linux.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_BADA)
#include "bada/CCApplication_bada.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_QNX)

View File

@ -38,7 +38,7 @@ THE SOFTWARE.
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_MARMALADE)
#include "marmalade/CCEGLView_marmalade.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
#include "Linux/CCEGLView_linux.h"
#include "linux/CCEGLView_linux.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_BADA)
#include "bada/CCEGLView_bada.h"
#elif (CC_TARGET_PLATFORM == CC_PLATFORM_QNX)

View File

@ -385,7 +385,7 @@ NS_CC_END;
#endif
#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
#include "Linux/CCFileUtils_Linux.cpp"
#include "linux/CCFileUtils_linux.cpp"
#endif
#endif // (CC_TARGET_PLATFORM != CC_PLATFORM_IOS)

View File

@ -612,5 +612,5 @@ NS_CC_END;
#endif
#if (CC_TARGET_PLATFORM == CC_PLATFORM_LINUX)
#include "Linux/CCImage_Linux.cpp"
#include "linux/CCImage_linux.cpp"
#endif

View File

@ -1,5 +1,5 @@
/*
* CCFileUtils_Linux.cpp
* CCFileUtils_linux.cpp
*
* Created on: Aug 9, 2011
* Author: laschweinski