open source
This commit is contained in:
@@ -0,0 +1 @@
|
||||
obj
|
||||
@@ -0,0 +1,113 @@
|
||||
|
||||
LOCAL_PATH:= $(call my-dir)
|
||||
|
||||
#libcommon.a
|
||||
include $(CLEAR_VARS)
|
||||
LOCAL_MODULE := libcommon
|
||||
LOCAL_CFLAGS := \
|
||||
-fexceptions \
|
||||
-Wno-multichar \
|
||||
-DANDROID \
|
||||
-DIN_LIBRARY \
|
||||
-D_GLIBCXX_PERMIT_BACKWARD_HASH \
|
||||
-frtti
|
||||
|
||||
LOCAL_CFLAGS += -std=c++11
|
||||
|
||||
ifeq ($(APP_PERFTEST),1)
|
||||
LOCAL_CFLAGS += -DPERFTEST
|
||||
endif
|
||||
|
||||
LOCAL_CXXFLAGS := -O3
|
||||
|
||||
LOCAL_SRC_FILES := \
|
||||
../../../../source/common/buffer/JCBuffer.cpp \
|
||||
../../../../source/common/downloadCache/JCFileTable.cpp \
|
||||
../../../../source/common/downloadCache/JCServerFileCache.cpp \
|
||||
../../../../source/common/downloadMgr/JCCurlWrap.cpp \
|
||||
../../../../source/common/downloadMgr/JCHttpHeader.cpp \
|
||||
../../../../source/common/downloadMgr/JCDownloadMgr.cpp \
|
||||
../../../../source/common/event/JCEmitter.cpp \
|
||||
../../../../source/common/event/JCEventBase.cpp \
|
||||
../../../../source/common/fileSystem/JCFileSystem.cpp \
|
||||
../../../../source/common/fontMgr/JCFreeTypeRender.cpp \
|
||||
../../../../source/common/imageLib/JCImageRW.cpp \
|
||||
../../../../source/common/imageLib/JCJpegImg.cpp \
|
||||
../../../../source/common/imageLib/JCPngImg.cpp \
|
||||
../../../../source/common/imageLib/JCGifImg.cpp \
|
||||
../../../../source/common/math/Matrix32.cpp \
|
||||
../../../../source/common/misc/JCGetClockExact.cpp \
|
||||
../../../../source/common/misc/JCLayaThreadPool.cpp \
|
||||
../../../../source/common/misc/JCWorkerThread.cpp \
|
||||
../../../../source/common/misc/JCWorkSemaphore.cpp \
|
||||
../../../../source/common/util/JCColor.cpp \
|
||||
../../../../source/common/util/JCCommonMethed.cpp \
|
||||
../../../../source/common/util/JCCrypto.cpp \
|
||||
../../../../source/common/util/JCJson.cpp \
|
||||
../../../../source/common/util/JCIniFile.cpp \
|
||||
../../../../source/common/util/JCLayaUrl.cpp \
|
||||
../../../../source/common/util/JCMemorySurvey.cpp \
|
||||
../../../../source/common/util/JCXml.cpp \
|
||||
../../../../source/common/util/JCZipFile.cpp \
|
||||
../../../../source/common/util/JCZlib.cpp \
|
||||
../../../../source/common/util/Log.cpp \
|
||||
../../../../source/common/util/JCFlog.cpp \
|
||||
../../../../source/common/resource/Audio/JCAudioWavplayer.cpp \
|
||||
../../../../source/common/resource/Audio/JCOggParser.cpp \
|
||||
../../../../source/common/resource/Audio/JCWaveInfo.cpp \
|
||||
../../../../source/common/resource/Audio/JCWaveParser.cpp \
|
||||
../../../../source/common/fontMgr/JCFontInfo.cpp \
|
||||
../../../../source/common/fontMgr/JCFontManager.cpp \
|
||||
../../../../source/common/resource/JCFileResManager.cpp \
|
||||
../../../../source/common/resource/JCResManager.cpp \
|
||||
../../../../source/common/resource/JCResource.cpp \
|
||||
../../../../source/common/OpenAL/OpenAL32/alAuxEffectSlot.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alBuffer.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alDatabuffer.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alEffect.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alError.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alExtension.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alFilter.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alListener.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alSource.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alState.c \
|
||||
../../../../source/common/OpenAL/OpenAL32/alThunk.c \
|
||||
../../../../source/common/OpenAL/Alc/ALc.c \
|
||||
../../../../source/common/OpenAL/Alc/alcConfig.c \
|
||||
../../../../source/common/OpenAL/Alc/alcEcho.c \
|
||||
../../../../source/common/OpenAL/Alc/alcModulator.c \
|
||||
../../../../source/common/OpenAL/Alc/alcReverb.c \
|
||||
../../../../source/common/OpenAL/Alc/alcRing.c \
|
||||
../../../../source/common/OpenAL/Alc/alcThread.c \
|
||||
../../../../source/common/OpenAL/Alc/ALu.c \
|
||||
../../../../source/common/OpenAL/Alc/android.c \
|
||||
../../../../source/common/OpenAL/Alc/bs2b.c \
|
||||
../../../../source/common/OpenAL/Alc/null.c \
|
||||
|
||||
|
||||
LOCAL_C_INCLUDES := ../../../../../ThirdParty/curl/include/android \
|
||||
../../../../../ThirdParty/png/include/android \
|
||||
../../../../../ThirdParty/jpeg/include/android \
|
||||
../../../../../ThirdParty/freetype/include/android \
|
||||
../../../../../ThirdParty/zip/include/android \
|
||||
../../../../../ThirdParty/ogg/include/android \
|
||||
../../../../../ThirdParty/zlib/include/android \
|
||||
../../../../source/common/OpenAL/include \
|
||||
../../../../source/common/OpenAL/OpenAL32/Include \
|
||||
../../../../source/common/glm \
|
||||
|
||||
#LOCAL_IS64:=32
|
||||
#LOCAL_LDLIBS := -llog -lz -landroid \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libcurl.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libgnustl_static.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libjpeg.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libpng.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libfreetype.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libzip.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libogg.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libvorbis.a \
|
||||
# ../../../../libs/android$(LOCAL_IS64)/libvorbis-jni.a \
|
||||
|
||||
|
||||
include $(BUILD_STATIC_LIBRARY)
|
||||
|
||||
@@ -0,0 +1,7 @@
|
||||
APP_MODULES := libcommon
|
||||
APP_PLATFORM := android-18
|
||||
NDK_TOOLCHAIN_VERSION := 4.9
|
||||
APP_STL := gnustl_static
|
||||
APP_OPTIM := release
|
||||
#使用硬件fp
|
||||
APP_ABI :=armeabi-v7a arm64-v8a x86
|
||||
@@ -0,0 +1,3 @@
|
||||
#!/bin/sh
|
||||
ndk-build NDK_PROJECT_PATH=. NDK_APP_APPLICATION_MK=./Application.mk APP_BUILD_SCRIPT=./Android.mk APP_ABI=armeabi-v7a obj/local/armeabi-v7a/libcommon.a LOCAL_ARM_MODE=arm
|
||||
#LOCAL_ARM_NEON=true ARCH_ARM_HAVE_NEON=true
|
||||
@@ -0,0 +1,14 @@
|
||||
# This file is automatically generated by Android Tools.
|
||||
# Do not modify this file -- YOUR CHANGES WILL BE ERASED!
|
||||
#
|
||||
# This file must be checked in Version Control Systems.
|
||||
#
|
||||
# To customize properties used by the Ant build system edit
|
||||
# "ant.properties", and override values to adapt the script to your
|
||||
# project structure.
|
||||
#
|
||||
# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home):
|
||||
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt
|
||||
|
||||
# Project target.
|
||||
target=android-17
|
||||
@@ -0,0 +1,805 @@
|
||||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 46;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
24760D7F2081C3E600594375 /* JCFreeTypeRender.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24760D772081C3E500594375 /* JCFreeTypeRender.cpp */; };
|
||||
24760D802081C3E600594375 /* JCFontInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24760D792081C3E500594375 /* JCFontInfo.cpp */; };
|
||||
24760D812081C3E600594375 /* JCFontManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 24760D7C2081C3E500594375 /* JCFontManager.cpp */; };
|
||||
5E6806501D7D504C002A7575 /* JCHttpHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E68064E1D7D504C002A7575 /* JCHttpHeader.cpp */; };
|
||||
8A4296901B6757DB0072C3F7 /* libcommon.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8A4296841B6757DB0072C3F7 /* libcommon.a */; };
|
||||
9DFB1EDE1D34EB33006D31AD /* JCOggParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DFB1EDC1D34EB33006D31AD /* JCOggParser.cpp */; };
|
||||
9DFB1F591D3632AB006D31AD /* JCGifImg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9DFB1F571D3632AB006D31AD /* JCGifImg.cpp */; };
|
||||
A242E3EB1D813D420013CCF0 /* JCFlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A242E3E91D813D420013CCF0 /* JCFlog.cpp */; };
|
||||
A27D925B2106D9BD00CD920F /* Matrix32.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A27D92532106D9BC00CD920F /* Matrix32.cpp */; };
|
||||
A2D117791D0B9B8B004C229D /* JCBuffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117771D0B9B8B004C229D /* JCBuffer.cpp */; };
|
||||
A2D117801D0B9B9B004C229D /* JCFileTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1177B1D0B9B9B004C229D /* JCFileTable.cpp */; };
|
||||
A2D117811D0B9B9B004C229D /* JCServerFileCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1177E1D0B9B9B004C229D /* JCServerFileCache.cpp */; };
|
||||
A2D117861D0B9BB0004C229D /* JCCurlWrap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117821D0B9BB0004C229D /* JCCurlWrap.cpp */; };
|
||||
A2D117871D0B9BB0004C229D /* JCDownloadMgr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117841D0B9BB0004C229D /* JCDownloadMgr.cpp */; };
|
||||
A2D1178C1D0B9BBE004C229D /* JCEmitter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117881D0B9BBE004C229D /* JCEmitter.cpp */; };
|
||||
A2D1178D1D0B9BBE004C229D /* JCEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1178A1D0B9BBE004C229D /* JCEventBase.cpp */; };
|
||||
A2D117901D0B9BCF004C229D /* JCFileSystem.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1178E1D0B9BCF004C229D /* JCFileSystem.cpp */; };
|
||||
A2D117A61D0B9BF5004C229D /* JCImageRW.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117A21D0B9BF5004C229D /* JCImageRW.cpp */; };
|
||||
A2D117A71D0B9BF5004C229D /* JCJpegImg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117A41D0B9BF5004C229D /* JCJpegImg.cpp */; };
|
||||
A2D117A81D0B9BF5004C229D /* JCPngImg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117A51D0B9BF5004C229D /* JCPngImg.cpp */; };
|
||||
A2D117BD1D0B9C20004C229D /* JCGetClockExact.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117B31D0B9C20004C229D /* JCGetClockExact.cpp */; };
|
||||
A2D117BE1D0B9C20004C229D /* JCLayaThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117B51D0B9C20004C229D /* JCLayaThreadPool.cpp */; };
|
||||
A2D117BF1D0B9C20004C229D /* JCWorkerThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117B91D0B9C20004C229D /* JCWorkerThread.cpp */; };
|
||||
A2D117C01D0B9C20004C229D /* JCWorkSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117BB1D0B9C20004C229D /* JCWorkSemaphore.cpp */; };
|
||||
A2D117DC1D0B9C51004C229D /* JCAudioWavplayer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117D31D0B9C51004C229D /* JCAudioWavplayer.cpp */; };
|
||||
A2D117DE1D0B9C51004C229D /* JCWaveInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117D81D0B9C51004C229D /* JCWaveInfo.cpp */; };
|
||||
A2D117DF1D0B9C51004C229D /* JCWaveParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117DA1D0B9C51004C229D /* JCWaveParser.cpp */; };
|
||||
A2D117F51D0B9D2C004C229D /* JCFileResManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117EF1D0B9D2C004C229D /* JCFileResManager.cpp */; };
|
||||
A2D117F61D0B9D2C004C229D /* JCResManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117F11D0B9D2C004C229D /* JCResManager.cpp */; };
|
||||
A2D117F71D0B9D2C004C229D /* JCResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117F31D0B9D2C004C229D /* JCResource.cpp */; };
|
||||
A2D118111D0B9D51004C229D /* JCColor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117F81D0B9D51004C229D /* JCColor.cpp */; };
|
||||
A2D118121D0B9D51004C229D /* JCCommonMethed.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117FA1D0B9D51004C229D /* JCCommonMethed.cpp */; };
|
||||
A2D118131D0B9D51004C229D /* JCCrypto.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117FC1D0B9D51004C229D /* JCCrypto.cpp */; };
|
||||
A2D118141D0B9D51004C229D /* JCJson.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D117FF1D0B9D51004C229D /* JCJson.cpp */; };
|
||||
A2D118151D0B9D51004C229D /* JCLayaUrl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D118011D0B9D51004C229D /* JCLayaUrl.cpp */; };
|
||||
A2D118161D0B9D51004C229D /* JCMemorySurvey.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D118031D0B9D51004C229D /* JCMemorySurvey.cpp */; };
|
||||
A2D118181D0B9D51004C229D /* JCXml.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D118081D0B9D51004C229D /* JCXml.cpp */; };
|
||||
A2D118191D0B9D51004C229D /* JCZipFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1180A1D0B9D51004C229D /* JCZipFile.cpp */; };
|
||||
A2D1181A1D0B9D51004C229D /* JCZlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1180C1D0B9D51004C229D /* JCZlib.cpp */; };
|
||||
A2D1181B1D0B9D51004C229D /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D1180F1D0B9D51004C229D /* Log.cpp */; };
|
||||
A2D11A021D0C2D65004C229D /* JCIniFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D11A001D0C2D65004C229D /* JCIniFile.cpp */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
8A4296911B6757DB0072C3F7 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 8A42967C1B6757DB0072C3F7 /* Project object */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 8A4296831B6757DB0072C3F7;
|
||||
remoteInfo = common;
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXCopyFilesBuildPhase section */
|
||||
8A4296821B6757DB0072C3F7 /* CopyFiles */ = {
|
||||
isa = PBXCopyFilesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
dstPath = "include/$(PRODUCT_NAME)";
|
||||
dstSubfolderSpec = 16;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXCopyFilesBuildPhase section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
24760D772081C3E500594375 /* JCFreeTypeRender.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFreeTypeRender.cpp; sourceTree = "<group>"; };
|
||||
24760D782081C3E500594375 /* JCFontManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFontManager.h; sourceTree = "<group>"; };
|
||||
24760D792081C3E500594375 /* JCFontInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFontInfo.cpp; sourceTree = "<group>"; };
|
||||
24760D7A2081C3E500594375 /* JCFontInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFontInfo.h; sourceTree = "<group>"; };
|
||||
24760D7C2081C3E500594375 /* JCFontManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFontManager.cpp; sourceTree = "<group>"; };
|
||||
24760D7D2081C3E500594375 /* JCFreeTypeRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFreeTypeRender.h; sourceTree = "<group>"; };
|
||||
5E68064E1D7D504C002A7575 /* JCHttpHeader.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCHttpHeader.cpp; sourceTree = "<group>"; };
|
||||
5E68064F1D7D504C002A7575 /* JCHttpHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCHttpHeader.h; sourceTree = "<group>"; };
|
||||
8A4296841B6757DB0072C3F7 /* libcommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libcommon.a; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
8A42968F1B6757DB0072C3F7 /* commonTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = commonTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
8A4296951B6757DB0072C3F7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
||||
8A42A0871B675CEF0072C3F7 /* rapidxml.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rapidxml.hpp; sourceTree = "<group>"; };
|
||||
8A42A0881B675CEF0072C3F7 /* rapidxml_iterators.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rapidxml_iterators.hpp; sourceTree = "<group>"; };
|
||||
8A42A0891B675CEF0072C3F7 /* rapidxml_print.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rapidxml_print.hpp; sourceTree = "<group>"; };
|
||||
8A42A08A1B675CEF0072C3F7 /* rapidxml_utils.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = rapidxml_utils.hpp; sourceTree = "<group>"; };
|
||||
9DFB1EDC1D34EB33006D31AD /* JCOggParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCOggParser.cpp; sourceTree = "<group>"; };
|
||||
9DFB1EDD1D34EB33006D31AD /* JCOggParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCOggParser.h; sourceTree = "<group>"; };
|
||||
9DFB1F571D3632AB006D31AD /* JCGifImg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCGifImg.cpp; sourceTree = "<group>"; };
|
||||
9DFB1F581D3632AB006D31AD /* JCGifImg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCGifImg.h; sourceTree = "<group>"; };
|
||||
A242E3E91D813D420013CCF0 /* JCFlog.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFlog.cpp; sourceTree = "<group>"; };
|
||||
A242E3EA1D813D420013CCF0 /* JCFlog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFlog.h; sourceTree = "<group>"; };
|
||||
A27D92532106D9BC00CD920F /* Matrix32.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = Matrix32.cpp; path = ../../../source/common/math/Matrix32.cpp; sourceTree = "<group>"; };
|
||||
A27D92572106D9BD00CD920F /* Matrix32.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Matrix32.h; path = ../../../source/common/math/Matrix32.h; sourceTree = "<group>"; };
|
||||
A2D117771D0B9B8B004C229D /* JCBuffer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCBuffer.cpp; sourceTree = "<group>"; };
|
||||
A2D117781D0B9B8B004C229D /* JCBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCBuffer.h; sourceTree = "<group>"; };
|
||||
A2D1177A1D0B9B9B004C229D /* JCFileSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFileSource.h; sourceTree = "<group>"; };
|
||||
A2D1177B1D0B9B9B004C229D /* JCFileTable.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFileTable.cpp; sourceTree = "<group>"; };
|
||||
A2D1177C1D0B9B9B004C229D /* JCFileTable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFileTable.h; sourceTree = "<group>"; };
|
||||
A2D1177D1D0B9B9B004C229D /* JCIosFileSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCIosFileSource.h; sourceTree = "<group>"; };
|
||||
A2D1177E1D0B9B9B004C229D /* JCServerFileCache.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCServerFileCache.cpp; sourceTree = "<group>"; };
|
||||
A2D1177F1D0B9B9B004C229D /* JCServerFileCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCServerFileCache.h; sourceTree = "<group>"; };
|
||||
A2D117821D0B9BB0004C229D /* JCCurlWrap.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCCurlWrap.cpp; sourceTree = "<group>"; };
|
||||
A2D117831D0B9BB0004C229D /* JCCurlWrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCCurlWrap.h; sourceTree = "<group>"; };
|
||||
A2D117841D0B9BB0004C229D /* JCDownloadMgr.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCDownloadMgr.cpp; sourceTree = "<group>"; };
|
||||
A2D117851D0B9BB0004C229D /* JCDownloadMgr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCDownloadMgr.h; sourceTree = "<group>"; };
|
||||
A2D117881D0B9BBE004C229D /* JCEmitter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCEmitter.cpp; sourceTree = "<group>"; };
|
||||
A2D117891D0B9BBE004C229D /* JCEmitter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCEmitter.h; sourceTree = "<group>"; };
|
||||
A2D1178A1D0B9BBE004C229D /* JCEventBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCEventBase.cpp; sourceTree = "<group>"; };
|
||||
A2D1178B1D0B9BBE004C229D /* JCEventBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCEventBase.h; sourceTree = "<group>"; };
|
||||
A2D1178E1D0B9BCF004C229D /* JCFileSystem.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFileSystem.cpp; sourceTree = "<group>"; };
|
||||
A2D1178F1D0B9BCF004C229D /* JCFileSystem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFileSystem.h; sourceTree = "<group>"; };
|
||||
A2D117A21D0B9BF5004C229D /* JCImageRW.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCImageRW.cpp; sourceTree = "<group>"; };
|
||||
A2D117A31D0B9BF5004C229D /* JCImageRW.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCImageRW.h; sourceTree = "<group>"; };
|
||||
A2D117A41D0B9BF5004C229D /* JCJpegImg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCJpegImg.cpp; sourceTree = "<group>"; };
|
||||
A2D117A51D0B9BF5004C229D /* JCPngImg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCPngImg.cpp; sourceTree = "<group>"; };
|
||||
A2D117B21D0B9C20004C229D /* JCCondition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCCondition.h; sourceTree = "<group>"; };
|
||||
A2D117B31D0B9C20004C229D /* JCGetClockExact.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCGetClockExact.cpp; sourceTree = "<group>"; };
|
||||
A2D117B41D0B9C20004C229D /* JCGetClockExact.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCGetClockExact.h; sourceTree = "<group>"; };
|
||||
A2D117B51D0B9C20004C229D /* JCLayaThreadPool.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCLayaThreadPool.cpp; sourceTree = "<group>"; };
|
||||
A2D117B61D0B9C20004C229D /* JCLayaThreadPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCLayaThreadPool.h; sourceTree = "<group>"; };
|
||||
A2D117B71D0B9C20004C229D /* JCSingleton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCSingleton.h; sourceTree = "<group>"; };
|
||||
A2D117B81D0B9C20004C229D /* JCThreadPool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCThreadPool.h; sourceTree = "<group>"; };
|
||||
A2D117B91D0B9C20004C229D /* JCWorkerThread.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCWorkerThread.cpp; sourceTree = "<group>"; };
|
||||
A2D117BA1D0B9C20004C229D /* JCWorkerThread.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCWorkerThread.h; sourceTree = "<group>"; };
|
||||
A2D117BB1D0B9C20004C229D /* JCWorkSemaphore.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCWorkSemaphore.cpp; sourceTree = "<group>"; };
|
||||
A2D117BC1D0B9C20004C229D /* JCWorkSemaphore.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCWorkSemaphore.h; sourceTree = "<group>"; };
|
||||
A2D117D21D0B9C51004C229D /* JCAudioInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCAudioInterface.h; sourceTree = "<group>"; };
|
||||
A2D117D31D0B9C51004C229D /* JCAudioWavplayer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCAudioWavplayer.cpp; sourceTree = "<group>"; };
|
||||
A2D117D41D0B9C51004C229D /* JCAudioWavPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCAudioWavPlayer.h; sourceTree = "<group>"; };
|
||||
A2D117D51D0B9C51004C229D /* JCMp3Interface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCMp3Interface.h; sourceTree = "<group>"; };
|
||||
A2D117D81D0B9C51004C229D /* JCWaveInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCWaveInfo.cpp; sourceTree = "<group>"; };
|
||||
A2D117D91D0B9C51004C229D /* JCWaveInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCWaveInfo.h; sourceTree = "<group>"; };
|
||||
A2D117DA1D0B9C51004C229D /* JCWaveParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCWaveParser.cpp; sourceTree = "<group>"; };
|
||||
A2D117DB1D0B9C51004C229D /* JCWaveParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCWaveParser.h; sourceTree = "<group>"; };
|
||||
A2D117EF1D0B9D2C004C229D /* JCFileResManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCFileResManager.cpp; sourceTree = "<group>"; };
|
||||
A2D117F01D0B9D2C004C229D /* JCFileResManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCFileResManager.h; sourceTree = "<group>"; };
|
||||
A2D117F11D0B9D2C004C229D /* JCResManager.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCResManager.cpp; sourceTree = "<group>"; };
|
||||
A2D117F21D0B9D2C004C229D /* JCResManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCResManager.h; sourceTree = "<group>"; };
|
||||
A2D117F31D0B9D2C004C229D /* JCResource.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCResource.cpp; sourceTree = "<group>"; };
|
||||
A2D117F41D0B9D2C004C229D /* JCResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCResource.h; sourceTree = "<group>"; };
|
||||
A2D117F81D0B9D51004C229D /* JCColor.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCColor.cpp; sourceTree = "<group>"; };
|
||||
A2D117F91D0B9D51004C229D /* JCColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCColor.h; sourceTree = "<group>"; };
|
||||
A2D117FA1D0B9D51004C229D /* JCCommonMethed.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCCommonMethed.cpp; sourceTree = "<group>"; };
|
||||
A2D117FB1D0B9D51004C229D /* JCCommonMethod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCCommonMethod.h; sourceTree = "<group>"; };
|
||||
A2D117FC1D0B9D51004C229D /* JCCrypto.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCCrypto.cpp; sourceTree = "<group>"; };
|
||||
A2D117FD1D0B9D51004C229D /* JCCrypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCCrypto.h; sourceTree = "<group>"; };
|
||||
A2D117FE1D0B9D51004C229D /* JCIThreadCmdMgr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCIThreadCmdMgr.h; sourceTree = "<group>"; };
|
||||
A2D117FF1D0B9D51004C229D /* JCJson.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCJson.cpp; sourceTree = "<group>"; };
|
||||
A2D118001D0B9D51004C229D /* JCJson.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCJson.h; sourceTree = "<group>"; };
|
||||
A2D118011D0B9D51004C229D /* JCLayaUrl.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCLayaUrl.cpp; sourceTree = "<group>"; };
|
||||
A2D118021D0B9D51004C229D /* JCLayaUrl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCLayaUrl.h; sourceTree = "<group>"; };
|
||||
A2D118031D0B9D51004C229D /* JCMemorySurvey.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCMemorySurvey.cpp; sourceTree = "<group>"; };
|
||||
A2D118041D0B9D51004C229D /* JCMemorySurvey.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCMemorySurvey.h; sourceTree = "<group>"; };
|
||||
A2D118071D0B9D51004C229D /* JCSimpleCRC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCSimpleCRC.h; sourceTree = "<group>"; };
|
||||
A2D118081D0B9D51004C229D /* JCXml.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCXml.cpp; sourceTree = "<group>"; };
|
||||
A2D118091D0B9D51004C229D /* JCXml.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCXml.h; sourceTree = "<group>"; };
|
||||
A2D1180A1D0B9D51004C229D /* JCZipFile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCZipFile.cpp; sourceTree = "<group>"; };
|
||||
A2D1180B1D0B9D51004C229D /* JCZipFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCZipFile.h; sourceTree = "<group>"; };
|
||||
A2D1180C1D0B9D51004C229D /* JCZlib.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCZlib.cpp; sourceTree = "<group>"; };
|
||||
A2D1180D1D0B9D51004C229D /* JCZlib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCZlib.h; sourceTree = "<group>"; };
|
||||
A2D1180E1D0B9D51004C229D /* ListNode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ListNode.h; sourceTree = "<group>"; };
|
||||
A2D1180F1D0B9D51004C229D /* Log.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Log.cpp; sourceTree = "<group>"; };
|
||||
A2D118101D0B9D51004C229D /* Log.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Log.h; sourceTree = "<group>"; };
|
||||
A2D118251D0B9F29004C229D /* JCIGLRender.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JCIGLRender.h; path = ../../../source/common/JCIGLRender.h; sourceTree = "<group>"; };
|
||||
A2D11A001D0C2D65004C229D /* JCIniFile.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = JCIniFile.cpp; sourceTree = "<group>"; };
|
||||
A2D11A011D0C2D65004C229D /* JCIniFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JCIniFile.h; sourceTree = "<group>"; };
|
||||
A2D11A1F1D0C3FA0004C229D /* JCIOSFTInterface.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = JCIOSFTInterface.h; path = ../../../source/common/JCIOSFTInterface.h; sourceTree = "<group>"; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
8A4296811B6757DB0072C3F7 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
8A42968C1B6757DB0072C3F7 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
8A4296901B6757DB0072C3F7 /* libcommon.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
24760D662081C29000594375 /* fontMgr */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
24760D792081C3E500594375 /* JCFontInfo.cpp */,
|
||||
24760D7A2081C3E500594375 /* JCFontInfo.h */,
|
||||
24760D7C2081C3E500594375 /* JCFontManager.cpp */,
|
||||
24760D782081C3E500594375 /* JCFontManager.h */,
|
||||
24760D772081C3E500594375 /* JCFreeTypeRender.cpp */,
|
||||
24760D7D2081C3E500594375 /* JCFreeTypeRender.h */,
|
||||
);
|
||||
name = fontMgr;
|
||||
path = ../../../source/common/fontMgr;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A42967B1B6757DB0072C3F7 = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8A42969E1B6758240072C3F7 /* source */,
|
||||
8A4296931B6757DB0072C3F7 /* commonTests */,
|
||||
8A4296851B6757DB0072C3F7 /* Products */,
|
||||
);
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A4296851B6757DB0072C3F7 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8A4296841B6757DB0072C3F7 /* libcommon.a */,
|
||||
8A42968F1B6757DB0072C3F7 /* commonTests.xctest */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A4296931B6757DB0072C3F7 /* commonTests */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8A4296941B6757DB0072C3F7 /* Supporting Files */,
|
||||
);
|
||||
path = commonTests;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A4296941B6757DB0072C3F7 /* Supporting Files */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8A4296951B6757DB0072C3F7 /* Info.plist */,
|
||||
);
|
||||
name = "Supporting Files";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A42969E1B6758240072C3F7 /* source */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
24760D662081C29000594375 /* fontMgr */,
|
||||
A2BCECF41E237061003ABF33 /* math */,
|
||||
A2D11A1F1D0C3FA0004C229D /* JCIOSFTInterface.h */,
|
||||
A2D118251D0B9F29004C229D /* JCIGLRender.h */,
|
||||
8A429F921B675CEF0072C3F7 /* buffer */,
|
||||
8A429F951B675CEF0072C3F7 /* downloadCache */,
|
||||
8A429F9E1B675CEF0072C3F7 /* downloadMgr */,
|
||||
8A429FA41B675CEF0072C3F7 /* event */,
|
||||
8A429FAA1B675CEF0072C3F7 /* fileSystem */,
|
||||
8A429FB81B675CEF0072C3F7 /* imageLib */,
|
||||
8A429FC71B675CEF0072C3F7 /* misc */,
|
||||
8A42A0281B675CEF0072C3F7 /* resource */,
|
||||
8A42A0671B675CEF0072C3F7 /* util */,
|
||||
);
|
||||
name = source;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429F921B675CEF0072C3F7 /* buffer */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A2D117771D0B9B8B004C229D /* JCBuffer.cpp */,
|
||||
A2D117781D0B9B8B004C229D /* JCBuffer.h */,
|
||||
);
|
||||
name = buffer;
|
||||
path = ../../../source/common/buffer;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429F951B675CEF0072C3F7 /* downloadCache */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A2D1177A1D0B9B9B004C229D /* JCFileSource.h */,
|
||||
A2D1177B1D0B9B9B004C229D /* JCFileTable.cpp */,
|
||||
A2D1177C1D0B9B9B004C229D /* JCFileTable.h */,
|
||||
A2D1177D1D0B9B9B004C229D /* JCIosFileSource.h */,
|
||||
A2D1177E1D0B9B9B004C229D /* JCServerFileCache.cpp */,
|
||||
A2D1177F1D0B9B9B004C229D /* JCServerFileCache.h */,
|
||||
);
|
||||
name = downloadCache;
|
||||
path = ../../../source/common/downloadCache;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429F9E1B675CEF0072C3F7 /* downloadMgr */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5E68064E1D7D504C002A7575 /* JCHttpHeader.cpp */,
|
||||
5E68064F1D7D504C002A7575 /* JCHttpHeader.h */,
|
||||
A2D117821D0B9BB0004C229D /* JCCurlWrap.cpp */,
|
||||
A2D117831D0B9BB0004C229D /* JCCurlWrap.h */,
|
||||
A2D117841D0B9BB0004C229D /* JCDownloadMgr.cpp */,
|
||||
A2D117851D0B9BB0004C229D /* JCDownloadMgr.h */,
|
||||
);
|
||||
name = downloadMgr;
|
||||
path = ../../../source/common/downloadMgr;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429FA41B675CEF0072C3F7 /* event */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A2D117881D0B9BBE004C229D /* JCEmitter.cpp */,
|
||||
A2D117891D0B9BBE004C229D /* JCEmitter.h */,
|
||||
A2D1178A1D0B9BBE004C229D /* JCEventBase.cpp */,
|
||||
A2D1178B1D0B9BBE004C229D /* JCEventBase.h */,
|
||||
);
|
||||
name = event;
|
||||
path = ../../../source/common/event;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429FAA1B675CEF0072C3F7 /* fileSystem */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A2D1178E1D0B9BCF004C229D /* JCFileSystem.cpp */,
|
||||
A2D1178F1D0B9BCF004C229D /* JCFileSystem.h */,
|
||||
);
|
||||
name = fileSystem;
|
||||
path = ../../../source/common/fileSystem;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429FB81B675CEF0072C3F7 /* imageLib */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9DFB1F571D3632AB006D31AD /* JCGifImg.cpp */,
|
||||
9DFB1F581D3632AB006D31AD /* JCGifImg.h */,
|
||||
A2D117A21D0B9BF5004C229D /* JCImageRW.cpp */,
|
||||
A2D117A31D0B9BF5004C229D /* JCImageRW.h */,
|
||||
A2D117A41D0B9BF5004C229D /* JCJpegImg.cpp */,
|
||||
A2D117A51D0B9BF5004C229D /* JCPngImg.cpp */,
|
||||
);
|
||||
name = imageLib;
|
||||
path = ../../../source/common/imageLib;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A429FC71B675CEF0072C3F7 /* misc */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A2D117B21D0B9C20004C229D /* JCCondition.h */,
|
||||
A2D117B31D0B9C20004C229D /* JCGetClockExact.cpp */,
|
||||
A2D117B41D0B9C20004C229D /* JCGetClockExact.h */,
|
||||
A2D117B51D0B9C20004C229D /* JCLayaThreadPool.cpp */,
|
||||
A2D117B61D0B9C20004C229D /* JCLayaThreadPool.h */,
|
||||
A2D117B71D0B9C20004C229D /* JCSingleton.h */,
|
||||
A2D117B81D0B9C20004C229D /* JCThreadPool.h */,
|
||||
A2D117B91D0B9C20004C229D /* JCWorkerThread.cpp */,
|
||||
A2D117BA1D0B9C20004C229D /* JCWorkerThread.h */,
|
||||
A2D117BB1D0B9C20004C229D /* JCWorkSemaphore.cpp */,
|
||||
A2D117BC1D0B9C20004C229D /* JCWorkSemaphore.h */,
|
||||
);
|
||||
name = misc;
|
||||
path = ../../../source/common/misc;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A42A0281B675CEF0072C3F7 /* resource */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A2D117EF1D0B9D2C004C229D /* JCFileResManager.cpp */,
|
||||
A2D117F01D0B9D2C004C229D /* JCFileResManager.h */,
|
||||
A2D117F11D0B9D2C004C229D /* JCResManager.cpp */,
|
||||
A2D117F21D0B9D2C004C229D /* JCResManager.h */,
|
||||
A2D117F31D0B9D2C004C229D /* JCResource.cpp */,
|
||||
A2D117F41D0B9D2C004C229D /* JCResource.h */,
|
||||
8A42A0311B675CEF0072C3F7 /* Audio */,
|
||||
);
|
||||
name = resource;
|
||||
path = ../../../source/common/resource;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A42A0311B675CEF0072C3F7 /* Audio */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
9DFB1EDC1D34EB33006D31AD /* JCOggParser.cpp */,
|
||||
9DFB1EDD1D34EB33006D31AD /* JCOggParser.h */,
|
||||
A2D117D21D0B9C51004C229D /* JCAudioInterface.h */,
|
||||
A2D117D31D0B9C51004C229D /* JCAudioWavplayer.cpp */,
|
||||
A2D117D41D0B9C51004C229D /* JCAudioWavPlayer.h */,
|
||||
A2D117D51D0B9C51004C229D /* JCMp3Interface.h */,
|
||||
A2D117D81D0B9C51004C229D /* JCWaveInfo.cpp */,
|
||||
A2D117D91D0B9C51004C229D /* JCWaveInfo.h */,
|
||||
A2D117DA1D0B9C51004C229D /* JCWaveParser.cpp */,
|
||||
A2D117DB1D0B9C51004C229D /* JCWaveParser.h */,
|
||||
);
|
||||
path = Audio;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A42A0671B675CEF0072C3F7 /* util */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A242E3E91D813D420013CCF0 /* JCFlog.cpp */,
|
||||
A242E3EA1D813D420013CCF0 /* JCFlog.h */,
|
||||
A2D11A001D0C2D65004C229D /* JCIniFile.cpp */,
|
||||
A2D11A011D0C2D65004C229D /* JCIniFile.h */,
|
||||
A2D117F81D0B9D51004C229D /* JCColor.cpp */,
|
||||
A2D117F91D0B9D51004C229D /* JCColor.h */,
|
||||
A2D117FA1D0B9D51004C229D /* JCCommonMethed.cpp */,
|
||||
A2D117FB1D0B9D51004C229D /* JCCommonMethod.h */,
|
||||
A2D117FC1D0B9D51004C229D /* JCCrypto.cpp */,
|
||||
A2D117FD1D0B9D51004C229D /* JCCrypto.h */,
|
||||
A2D117FE1D0B9D51004C229D /* JCIThreadCmdMgr.h */,
|
||||
A2D117FF1D0B9D51004C229D /* JCJson.cpp */,
|
||||
A2D118001D0B9D51004C229D /* JCJson.h */,
|
||||
A2D118011D0B9D51004C229D /* JCLayaUrl.cpp */,
|
||||
A2D118021D0B9D51004C229D /* JCLayaUrl.h */,
|
||||
A2D118031D0B9D51004C229D /* JCMemorySurvey.cpp */,
|
||||
A2D118041D0B9D51004C229D /* JCMemorySurvey.h */,
|
||||
A2D118071D0B9D51004C229D /* JCSimpleCRC.h */,
|
||||
A2D118081D0B9D51004C229D /* JCXml.cpp */,
|
||||
A2D118091D0B9D51004C229D /* JCXml.h */,
|
||||
A2D1180A1D0B9D51004C229D /* JCZipFile.cpp */,
|
||||
A2D1180B1D0B9D51004C229D /* JCZipFile.h */,
|
||||
A2D1180C1D0B9D51004C229D /* JCZlib.cpp */,
|
||||
A2D1180D1D0B9D51004C229D /* JCZlib.h */,
|
||||
A2D1180E1D0B9D51004C229D /* ListNode.h */,
|
||||
A2D1180F1D0B9D51004C229D /* Log.cpp */,
|
||||
A2D118101D0B9D51004C229D /* Log.h */,
|
||||
8A42A0861B675CEF0072C3F7 /* rapidxml */,
|
||||
);
|
||||
name = util;
|
||||
path = ../../../source/common/util;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
8A42A0861B675CEF0072C3F7 /* rapidxml */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
8A42A0871B675CEF0072C3F7 /* rapidxml.hpp */,
|
||||
8A42A0881B675CEF0072C3F7 /* rapidxml_iterators.hpp */,
|
||||
8A42A0891B675CEF0072C3F7 /* rapidxml_print.hpp */,
|
||||
8A42A08A1B675CEF0072C3F7 /* rapidxml_utils.hpp */,
|
||||
);
|
||||
path = rapidxml;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
A2BCECF41E237061003ABF33 /* math */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
A27D92532106D9BC00CD920F /* Matrix32.cpp */,
|
||||
A27D92572106D9BD00CD920F /* Matrix32.h */,
|
||||
);
|
||||
name = math;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
8A4296831B6757DB0072C3F7 /* common */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 8A4296981B6757DB0072C3F7 /* Build configuration list for PBXNativeTarget "common" */;
|
||||
buildPhases = (
|
||||
8A4296801B6757DB0072C3F7 /* Sources */,
|
||||
8A4296811B6757DB0072C3F7 /* Frameworks */,
|
||||
8A4296821B6757DB0072C3F7 /* CopyFiles */,
|
||||
A281055E1F735E7E0094C3CC /* ShellScript */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = common;
|
||||
productName = common;
|
||||
productReference = 8A4296841B6757DB0072C3F7 /* libcommon.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
8A42968E1B6757DB0072C3F7 /* commonTests */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 8A42969B1B6757DB0072C3F7 /* Build configuration list for PBXNativeTarget "commonTests" */;
|
||||
buildPhases = (
|
||||
8A42968B1B6757DB0072C3F7 /* Sources */,
|
||||
8A42968C1B6757DB0072C3F7 /* Frameworks */,
|
||||
8A42968D1B6757DB0072C3F7 /* Resources */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
8A4296921B6757DB0072C3F7 /* PBXTargetDependency */,
|
||||
);
|
||||
name = commonTests;
|
||||
productName = commonTests;
|
||||
productReference = 8A42968F1B6757DB0072C3F7 /* commonTests.xctest */;
|
||||
productType = "com.apple.product-type.bundle.unit-test";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
8A42967C1B6757DB0072C3F7 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
LastUpgradeCheck = 0640;
|
||||
ORGANIZATIONNAME = Laya.layabox.conch;
|
||||
TargetAttributes = {
|
||||
8A4296831B6757DB0072C3F7 = {
|
||||
CreatedOnToolsVersion = 6.4;
|
||||
};
|
||||
8A42968E1B6757DB0072C3F7 = {
|
||||
CreatedOnToolsVersion = 6.4;
|
||||
};
|
||||
};
|
||||
};
|
||||
buildConfigurationList = 8A42967F1B6757DB0072C3F7 /* Build configuration list for PBXProject "common" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
developmentRegion = English;
|
||||
hasScannedForEncodings = 0;
|
||||
knownRegions = (
|
||||
English,
|
||||
en,
|
||||
);
|
||||
mainGroup = 8A42967B1B6757DB0072C3F7;
|
||||
productRefGroup = 8A4296851B6757DB0072C3F7 /* Products */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
8A4296831B6757DB0072C3F7 /* common */,
|
||||
8A42968E1B6757DB0072C3F7 /* commonTests */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
8A42968D1B6757DB0072C3F7 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
A281055E1F735E7E0094C3CC /* ShellScript */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "chmod u+x $SRCROOT/../../copyLib.sh\n$SRCROOT/../../copyLib.sh\n";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
8A4296801B6757DB0072C3F7 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
A2D117F51D0B9D2C004C229D /* JCFileResManager.cpp in Sources */,
|
||||
A2D117F61D0B9D2C004C229D /* JCResManager.cpp in Sources */,
|
||||
A2D1181B1D0B9D51004C229D /* Log.cpp in Sources */,
|
||||
A2D117A71D0B9BF5004C229D /* JCJpegImg.cpp in Sources */,
|
||||
A2D11A021D0C2D65004C229D /* JCIniFile.cpp in Sources */,
|
||||
A2D118191D0B9D51004C229D /* JCZipFile.cpp in Sources */,
|
||||
A2D118141D0B9D51004C229D /* JCJson.cpp in Sources */,
|
||||
A2D117DF1D0B9C51004C229D /* JCWaveParser.cpp in Sources */,
|
||||
A2D117A81D0B9BF5004C229D /* JCPngImg.cpp in Sources */,
|
||||
A2D1178D1D0B9BBE004C229D /* JCEventBase.cpp in Sources */,
|
||||
5E6806501D7D504C002A7575 /* JCHttpHeader.cpp in Sources */,
|
||||
A2D117901D0B9BCF004C229D /* JCFileSystem.cpp in Sources */,
|
||||
A2D117F71D0B9D2C004C229D /* JCResource.cpp in Sources */,
|
||||
A2D1178C1D0B9BBE004C229D /* JCEmitter.cpp in Sources */,
|
||||
A2D118151D0B9D51004C229D /* JCLayaUrl.cpp in Sources */,
|
||||
A27D925B2106D9BD00CD920F /* Matrix32.cpp in Sources */,
|
||||
A2D117BF1D0B9C20004C229D /* JCWorkerThread.cpp in Sources */,
|
||||
9DFB1EDE1D34EB33006D31AD /* JCOggParser.cpp in Sources */,
|
||||
A2D117801D0B9B9B004C229D /* JCFileTable.cpp in Sources */,
|
||||
A2D118181D0B9D51004C229D /* JCXml.cpp in Sources */,
|
||||
A2D1181A1D0B9D51004C229D /* JCZlib.cpp in Sources */,
|
||||
24760D812081C3E600594375 /* JCFontManager.cpp in Sources */,
|
||||
A2D117DC1D0B9C51004C229D /* JCAudioWavplayer.cpp in Sources */,
|
||||
A2D117BD1D0B9C20004C229D /* JCGetClockExact.cpp in Sources */,
|
||||
A2D117C01D0B9C20004C229D /* JCWorkSemaphore.cpp in Sources */,
|
||||
A2D117DE1D0B9C51004C229D /* JCWaveInfo.cpp in Sources */,
|
||||
24760D802081C3E600594375 /* JCFontInfo.cpp in Sources */,
|
||||
A2D118121D0B9D51004C229D /* JCCommonMethed.cpp in Sources */,
|
||||
A2D117871D0B9BB0004C229D /* JCDownloadMgr.cpp in Sources */,
|
||||
A2D118161D0B9D51004C229D /* JCMemorySurvey.cpp in Sources */,
|
||||
A242E3EB1D813D420013CCF0 /* JCFlog.cpp in Sources */,
|
||||
9DFB1F591D3632AB006D31AD /* JCGifImg.cpp in Sources */,
|
||||
A2D118111D0B9D51004C229D /* JCColor.cpp in Sources */,
|
||||
A2D117861D0B9BB0004C229D /* JCCurlWrap.cpp in Sources */,
|
||||
A2D117BE1D0B9C20004C229D /* JCLayaThreadPool.cpp in Sources */,
|
||||
A2D117791D0B9B8B004C229D /* JCBuffer.cpp in Sources */,
|
||||
A2D117811D0B9B9B004C229D /* JCServerFileCache.cpp in Sources */,
|
||||
A2D117A61D0B9BF5004C229D /* JCImageRW.cpp in Sources */,
|
||||
A2D118131D0B9D51004C229D /* JCCrypto.cpp in Sources */,
|
||||
24760D7F2081C3E600594375 /* JCFreeTypeRender.cpp in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
8A42968B1B6757DB0072C3F7 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
8A4296921B6757DB0072C3F7 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
target = 8A4296831B6757DB0072C3F7 /* common */;
|
||||
targetProxy = 8A4296911B6757DB0072C3F7 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
8A4296961B6757DB0072C3F7 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
||||
MTL_ENABLE_DEBUG_INFO = YES;
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
OTHER_CFLAGS = "";
|
||||
SDKROOT = iphoneos;
|
||||
SYMROOT = build;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
8A4296971B6757DB0072C3F7 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
CLANG_ENABLE_MODULES = YES;
|
||||
CLANG_ENABLE_OBJC_ARC = YES;
|
||||
CLANG_WARN_BOOL_CONVERSION = YES;
|
||||
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
||||
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
||||
CLANG_WARN_EMPTY_BODY = YES;
|
||||
CLANG_WARN_ENUM_CONVERSION = YES;
|
||||
CLANG_WARN_INT_CONVERSION = YES;
|
||||
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
||||
CLANG_WARN_UNREACHABLE_CODE = YES;
|
||||
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
||||
COPY_PHASE_STRIP = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
ENABLE_NS_ASSERTIONS = NO;
|
||||
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_NO_COMMON_BLOCKS = YES;
|
||||
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
||||
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
||||
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
||||
GCC_WARN_UNUSED_FUNCTION = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
|
||||
MTL_ENABLE_DEBUG_INFO = NO;
|
||||
OTHER_CFLAGS = "";
|
||||
SDKROOT = iphoneos;
|
||||
SYMROOT = build;
|
||||
TARGETED_DEVICE_FAMILY = "1,2";
|
||||
VALIDATE_PRODUCT = YES;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
8A4296991B6757DB0072C3F7 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
OTHER_CFLAGS = (
|
||||
"-I../../../../ThirdParty/freetype/include/ios",
|
||||
"-I../../../../ThirdParty/jpeg/include/ios",
|
||||
"-I../../../../ThirdParty/zip/include/ios",
|
||||
"-I../../../../ThirdParty/curl/include/ios",
|
||||
"-I../../../../ThirdParty/png/include/ios",
|
||||
"-I../../../../ThirdParty/ogg/include/ios",
|
||||
"-I../../../../ThirdParty/openssl/include/ios",
|
||||
"-I../../../../ThirdParty/zlib/include/ios",
|
||||
);
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SKIP_INSTALL = YES;
|
||||
SYMROOT = build;
|
||||
VALID_ARCHS = "arm64 armv7 i386 x86_64";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
8A42969A1B6757DB0072C3F7 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
CLANG_CXX_LIBRARY = "libc++";
|
||||
DEBUG_INFORMATION_FORMAT = dwarf;
|
||||
GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
|
||||
OTHER_CFLAGS = (
|
||||
"-I../../../../ThirdParty/freetype/include/ios",
|
||||
"-I../../../../ThirdParty/jpeg/include/ios",
|
||||
"-I../../../../ThirdParty/zip/include/ios",
|
||||
"-I../../../../ThirdParty/curl/include/ios",
|
||||
"-I../../../../ThirdParty/png/include/ios",
|
||||
"-I../../../../ThirdParty/ogg/include/ios",
|
||||
"-I../../../../ThirdParty/openssl/include/ios",
|
||||
"-I../../../../ThirdParty/zlib/include/ios",
|
||||
);
|
||||
OTHER_LDFLAGS = "-ObjC";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
SKIP_INSTALL = YES;
|
||||
SYMROOT = build;
|
||||
VALID_ARCHS = "arm64 armv7 i386 x86_64";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
8A42969C1B6757DB0072C3F7 /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
"$(SDKROOT)/Developer/Library/Frameworks",
|
||||
"$(inherited)",
|
||||
);
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"DEBUG=1",
|
||||
"$(inherited)",
|
||||
);
|
||||
INFOPLIST_FILE = commonTests/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
8A42969D1B6757DB0072C3F7 /* Release */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
"$(SDKROOT)/Developer/Library/Frameworks",
|
||||
"$(inherited)",
|
||||
);
|
||||
INFOPLIST_FILE = commonTests/Info.plist;
|
||||
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
||||
PRODUCT_NAME = "$(TARGET_NAME)";
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
8A42967F1B6757DB0072C3F7 /* Build configuration list for PBXProject "common" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
8A4296961B6757DB0072C3F7 /* Debug */,
|
||||
8A4296971B6757DB0072C3F7 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
8A4296981B6757DB0072C3F7 /* Build configuration list for PBXNativeTarget "common" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
8A4296991B6757DB0072C3F7 /* Debug */,
|
||||
8A42969A1B6757DB0072C3F7 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
8A42969B1B6757DB0072C3F7 /* Build configuration list for PBXNativeTarget "commonTests" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
8A42969C1B6757DB0072C3F7 /* Debug */,
|
||||
8A42969D1B6757DB0072C3F7 /* Release */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = Release;
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
};
|
||||
rootObject = 8A42967C1B6757DB0072C3F7 /* Project object */;
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Workspace
|
||||
version = "1.0">
|
||||
<FileRef
|
||||
location = "self:common.xcodeproj">
|
||||
</FileRef>
|
||||
</Workspace>
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// common.h
|
||||
// common
|
||||
//
|
||||
// Created by joychina on 15/7/28.
|
||||
// Copyright (c) 2015年 Laya.layabox.conch. All rights reserved.
|
||||
//
|
||||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
@interface common : NSObject
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,13 @@
|
||||
//
|
||||
// common.m
|
||||
// common
|
||||
//
|
||||
// Created by joychina on 15/7/28.
|
||||
// Copyright (c) 2015年 Laya.layabox.conch. All rights reserved.
|
||||
//
|
||||
|
||||
#import "common.h"
|
||||
|
||||
@implementation common
|
||||
|
||||
@end
|
||||
@@ -0,0 +1,24 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
||||
<plist version="1.0">
|
||||
<dict>
|
||||
<key>CFBundleDevelopmentRegion</key>
|
||||
<string>en</string>
|
||||
<key>CFBundleExecutable</key>
|
||||
<string>$(EXECUTABLE_NAME)</string>
|
||||
<key>CFBundleIdentifier</key>
|
||||
<string>layabox.$(PRODUCT_NAME:rfc1034identifier)</string>
|
||||
<key>CFBundleInfoDictionaryVersion</key>
|
||||
<string>6.0</string>
|
||||
<key>CFBundleName</key>
|
||||
<string>$(PRODUCT_NAME)</string>
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>BNDL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>1</string>
|
||||
</dict>
|
||||
</plist>
|
||||
@@ -0,0 +1,2 @@
|
||||
Debug
|
||||
Release
|
||||
@@ -0,0 +1,20 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2012
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "common", "common.vcxproj", "{ABB51704-6CEB-42B4-9B14-9723FBBC08B2}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Win32 = Debug|Win32
|
||||
Release|Win32 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{ABB51704-6CEB-42B4-9B14-9723FBBC08B2}.Debug|Win32.ActiveCfg = Debug|Win32
|
||||
{ABB51704-6CEB-42B4-9B14-9723FBBC08B2}.Debug|Win32.Build.0 = Debug|Win32
|
||||
{ABB51704-6CEB-42B4-9B14-9723FBBC08B2}.Release|Win32.ActiveCfg = Release|Win32
|
||||
{ABB51704-6CEB-42B4-9B14-9723FBBC08B2}.Release|Win32.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
@@ -0,0 +1,186 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\source\common\buffer\JCBuffer.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\downloadCache\JCFileTable.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\downloadCache\JCServerFileCache.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\downloadMgr\JCCurlWrap.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\downloadMgr\JCDownloadMgr.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\downloadMgr\JCHttpHeader.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\event\JCEmitter.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\event\JCEventBase.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\fileSystem\JCFileSystem.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\fontMgr\JCFontInfo.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\fontMgr\JCFontManager.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\fontMgr\JCFreeTypeRender.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCGifImg.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCImageRW.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCJpegImg.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCPngImg.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\math\Matrix32.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCGetClockExact.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCLayaThreadPool.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCWorkerThread.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCWorkSemaphore.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCAudioWavplayer.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCOggParser.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCWaveInfo.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCWaveParser.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\JCFileResManager.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\JCResource.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\resource\JCResManager.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCCrypto.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCColor.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCCommonMethed.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCFlog.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCIniFile.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCJson.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCXml.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCMemorySurvey.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCZipFile.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCLayaUrl.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\JCZlib.cpp" />
|
||||
<ClCompile Include="..\..\..\source\common\util\Log.cpp" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\source\common\buffer\JCBuffer.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCFileSource.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCFileTable.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCIosFileSource.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCServerFileCache.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadMgr\JCCurlWrap.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadMgr\JCDownloadMgr.h" />
|
||||
<ClInclude Include="..\..\..\source\common\downloadMgr\JCHttpHeader.h" />
|
||||
<ClInclude Include="..\..\..\source\common\event\JCEmitter.h" />
|
||||
<ClInclude Include="..\..\..\source\common\event\JCEventBase.h" />
|
||||
<ClInclude Include="..\..\..\source\common\fileSystem\JCFileSystem.h" />
|
||||
<ClInclude Include="..\..\..\source\common\fontMgr\JCFontInfo.h" />
|
||||
<ClInclude Include="..\..\..\source\common\fontMgr\JCFontManager.h" />
|
||||
<ClInclude Include="..\..\..\source\common\fontMgr\JCFreeTypeRender.h" />
|
||||
<ClInclude Include="..\..\..\source\common\imageLib\JCGifImg.h" />
|
||||
<ClInclude Include="..\..\..\source\common\imageLib\JCImageRW.h" />
|
||||
<ClInclude Include="..\..\..\source\common\JCIGLRender.h" />
|
||||
<ClInclude Include="..\..\..\source\common\math\Matrix32.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCGetClockExact.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCCondition.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCLayaThreadPool.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCThreadPool.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCSingleton.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCWorkerThread.h" />
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCWorkSemaphore.h" />
|
||||
<ClInclude Include="..\..\..\source\common\JCIOSFTInterface.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCAudioInterface.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCAudioWavPlayer.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCMp3Interface.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCOggParser.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCWaveInfo.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCWaveParser.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\JCFileResManager.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\JCResource.h" />
|
||||
<ClInclude Include="..\..\..\source\common\resource\JCResManager.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCCrypto.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCColor.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCCommonMethod.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCFlog.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCIniFile.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCIThreadCmdMgr.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCJson.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCSimpleCRC.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCXml.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCMemorySurvey.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCZipFile.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCLayaUrl.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCZlib.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\ListNode.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\Log.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml.hpp" />
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml_iterators.hpp" />
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml_print.hpp" />
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml_utils.hpp" />
|
||||
<ClInclude Include="..\..\..\source\common\util\RefObject.h" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<ProjectGuid>{ABB51704-6CEB-42B4-9B14-9723FBBC08B2}</ProjectGuid>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<RootNamespace>common</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>8.1</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>StaticLibrary</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v140</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>MultiByte</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>..\..\..\libs\win32</OutDir>
|
||||
<TargetName>$(ProjectName)_d</TargetName>
|
||||
<IntDir>$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>..\..\..\libs\win32</OutDir>
|
||||
<IntDir>$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;GLM_FORCE_DEPTH_ZERO_TO_ONE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\ThirdParty\curl\include\win32;..\..\..\..\ThirdParty\angle\include;..\..\..\..\ThirdParty\png\include\win32;..\..\..\..\ThirdParty\jpeg\include\win32;..\..\..\..\ThirdParty\zlib\include\win32;..\..\..\..\ThirdParty\freetype\include\win32;..\..\..\..\ThirdParty\zip\include\win32;..\..\..\..\ThirdParty\openal\include;..\..\..\..\ThirdParty\ogg\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<PrecompiledHeader>NotUsing</PrecompiledHeader>
|
||||
<Optimization>Disabled</Optimization>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_LIB;_CRT_SECURE_NO_WARNINGS;_SCL_SECURE_NO_DEPRECATE;GLM_FORCE_DEPTH_ZERO_TO_ONE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<AdditionalIncludeDirectories>..\..\..\..\ThirdParty\curl\include\win32;..\..\..\..\ThirdParty\angle\include;..\..\..\..\ThirdParty\png\include\win32;..\..\..\..\ThirdParty\jpeg\include\win32;..\..\..\..\ThirdParty\zlib\include\win32;..\..\..\..\ThirdParty\freetype\include\win32;..\..\..\..\ThirdParty\zip\include\win32;..\..\..\..\ThirdParty\openal\include;..\..\..\..\ThirdParty\ogg\include\win32;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
<RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Windows</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,329 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="downloadCache">
|
||||
<UniqueIdentifier>{3f5c5bd7-853c-4636-bedc-7e8ff9a4981b}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="downloadMgr">
|
||||
<UniqueIdentifier>{e8bc0b24-fc64-48b1-a55d-1222f6d75240}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="event">
|
||||
<UniqueIdentifier>{7691b011-e1f7-4542-9ff8-49317e1bec3b}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="fileSystem">
|
||||
<UniqueIdentifier>{c4c37ed1-ce6e-464d-bf57-819c5c96e0f7}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="imageLib">
|
||||
<UniqueIdentifier>{11fb53b7-e1f4-4d12-aabc-7ded01f7c2ac}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="misc">
|
||||
<UniqueIdentifier>{c63d89be-0324-4d1d-a79d-4ce56587d188}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="resource">
|
||||
<UniqueIdentifier>{179f548f-8778-40d9-95e6-2ee358baaab1}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="util">
|
||||
<UniqueIdentifier>{83114a8d-9f83-4091-aaa6-e43fa8bdf490}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="util\rapidxml">
|
||||
<UniqueIdentifier>{afd6de01-1914-429f-8e94-6b7261c7f62d}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="resource\Audio">
|
||||
<UniqueIdentifier>{d06354d7-0d5f-47de-a946-d60f48125376}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="fontMgr">
|
||||
<UniqueIdentifier>{063b01b0-16d8-4357-be08-b3cb4a161d3e}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="math">
|
||||
<UniqueIdentifier>{6008e6d8-9cc0-45e5-8b31-96d9ed790acf}</UniqueIdentifier>
|
||||
</Filter>
|
||||
<Filter Include="buffer">
|
||||
<UniqueIdentifier>{fe27facc-9a04-4383-8ef2-6b5dd97916ec}</UniqueIdentifier>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCJson.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCXml.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCAudioWavplayer.cpp">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCWaveInfo.cpp">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCWaveParser.cpp">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\Audio\JCOggParser.cpp">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCColor.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\downloadCache\JCFileTable.cpp">
|
||||
<Filter>downloadCache</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\downloadCache\JCServerFileCache.cpp">
|
||||
<Filter>downloadCache</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\fileSystem\JCFileSystem.cpp">
|
||||
<Filter>fileSystem</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCMemorySurvey.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\downloadMgr\JCDownloadMgr.cpp">
|
||||
<Filter>downloadMgr</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\event\JCEmitter.cpp">
|
||||
<Filter>event</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\event\JCEventBase.cpp">
|
||||
<Filter>event</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCImageRW.cpp">
|
||||
<Filter>imageLib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCJpegImg.cpp">
|
||||
<Filter>imageLib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCPngImg.cpp">
|
||||
<Filter>imageLib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\JCFileResManager.cpp">
|
||||
<Filter>resource</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCWorkSemaphore.cpp">
|
||||
<Filter>misc</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCWorkerThread.cpp">
|
||||
<Filter>misc</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCCommonMethed.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCZipFile.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCLayaUrl.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCLayaThreadPool.cpp">
|
||||
<Filter>misc</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\JCResource.cpp">
|
||||
<Filter>resource</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\misc\JCGetClockExact.cpp">
|
||||
<Filter>misc</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\resource\JCResManager.cpp">
|
||||
<Filter>resource</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\downloadMgr\JCCurlWrap.cpp">
|
||||
<Filter>downloadMgr</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCCrypto.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\Log.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCZlib.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCIniFile.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\imageLib\JCGifImg.cpp">
|
||||
<Filter>imageLib</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\downloadMgr\JCHttpHeader.cpp">
|
||||
<Filter>downloadMgr</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\util\JCFlog.cpp">
|
||||
<Filter>util</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\fontMgr\JCFontInfo.cpp">
|
||||
<Filter>fontMgr</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\fontMgr\JCFontManager.cpp">
|
||||
<Filter>fontMgr</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\fontMgr\JCFreeTypeRender.cpp">
|
||||
<Filter>fontMgr</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\math\Matrix32.cpp">
|
||||
<Filter>math</Filter>
|
||||
</ClCompile>
|
||||
<ClCompile Include="..\..\..\source\common\buffer\JCBuffer.cpp">
|
||||
<Filter>buffer</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCJson.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCXml.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\Log.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml.hpp">
|
||||
<Filter>util\rapidxml</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml_iterators.hpp">
|
||||
<Filter>util\rapidxml</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml_print.hpp">
|
||||
<Filter>util\rapidxml</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\rapidxml\rapidxml_utils.hpp">
|
||||
<Filter>util\rapidxml</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCAudioInterface.h">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCAudioWavPlayer.h">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCMp3Interface.h">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCWaveInfo.h">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCWaveParser.h">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\Audio\JCOggParser.h">
|
||||
<Filter>resource\Audio</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCColor.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCFileSource.h">
|
||||
<Filter>downloadCache</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCFileTable.h">
|
||||
<Filter>downloadCache</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCIosFileSource.h">
|
||||
<Filter>downloadCache</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadCache\JCServerFileCache.h">
|
||||
<Filter>downloadCache</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\fileSystem\JCFileSystem.h">
|
||||
<Filter>fileSystem</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCMemorySurvey.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadMgr\JCDownloadMgr.h">
|
||||
<Filter>downloadMgr</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\event\JCEmitter.h">
|
||||
<Filter>event</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\event\JCEventBase.h">
|
||||
<Filter>event</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\imageLib\JCImageRW.h">
|
||||
<Filter>imageLib</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\JCFileResManager.h">
|
||||
<Filter>resource</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCWorkSemaphore.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCWorkerThread.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCCommonMethod.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCZipFile.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCLayaUrl.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCCondition.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCLayaThreadPool.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCSingleton.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\ListNode.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCSimpleCRC.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCThreadPool.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\JCResource.h">
|
||||
<Filter>resource</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\misc\JCGetClockExact.h">
|
||||
<Filter>misc</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\resource\JCResManager.h">
|
||||
<Filter>resource</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadMgr\JCCurlWrap.h">
|
||||
<Filter>downloadMgr</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCCrypto.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCZlib.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCIThreadCmdMgr.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\JCIGLRender.h" />
|
||||
<ClInclude Include="..\..\..\source\common\util\JCIniFile.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\JCIOSFTInterface.h" />
|
||||
<ClInclude Include="..\..\..\source\common\imageLib\JCGifImg.h">
|
||||
<Filter>imageLib</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\downloadMgr\JCHttpHeader.h">
|
||||
<Filter>downloadMgr</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\JCFlog.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\util\RefObject.h">
|
||||
<Filter>util</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\fontMgr\JCFontInfo.h">
|
||||
<Filter>fontMgr</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\fontMgr\JCFontManager.h">
|
||||
<Filter>fontMgr</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\fontMgr\JCFreeTypeRender.h">
|
||||
<Filter>fontMgr</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\math\Matrix32.h">
|
||||
<Filter>math</Filter>
|
||||
</ClInclude>
|
||||
<ClInclude Include="..\..\..\source\common\buffer\JCBuffer.h">
|
||||
<Filter>buffer</Filter>
|
||||
</ClInclude>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user