2014-08-24 18:52:51 +08:00
|
|
|
#/****************************************************************************
|
|
|
|
# Copyright (c) 2013 cocos2d-x.org
|
|
|
|
# Copyright (c) 2014 martell malone
|
|
|
|
#
|
|
|
|
# http://www.cocos2d-x.org
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
2014-05-02 04:01:51 +08:00
|
|
|
|
2014-08-24 18:52:51 +08:00
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
2014-05-02 04:01:51 +08:00
|
|
|
|
2014-08-24 18:52:51 +08:00
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
# THE SOFTWARE.
|
|
|
|
# ****************************************************************************/
|
2014-05-02 04:01:51 +08:00
|
|
|
|
2014-08-24 18:52:51 +08:00
|
|
|
# this CMakeLists is to generate libcocos2d.a
|
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
if(WINDOWS)
|
|
|
|
ADD_DEFINITIONS(-DUNICODE -D_UNICODE)
|
2014-09-10 03:18:31 +08:00
|
|
|
endif()
|
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
if(WINDOWS AND NOT BUILD_STATIC)
|
|
|
|
ADD_DEFINITIONS (-D_USRDLL)
|
2014-09-10 03:18:31 +08:00
|
|
|
endif()
|
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
include(2d/CMakeLists.txt)
|
|
|
|
include(3d/CMakeLists.txt)
|
|
|
|
include(platform/CMakeLists.txt)
|
|
|
|
include(physics/CMakeLists.txt)
|
|
|
|
include(math/CMakeLists.txt)
|
|
|
|
include(renderer/CMakeLists.txt)
|
|
|
|
include(base/CMakeLists.txt)
|
|
|
|
include(deprecated/CMakeLists.txt)
|
|
|
|
include(ui/CMakeLists.txt)
|
|
|
|
include(network/CMakeLists.txt)
|
|
|
|
include(audio/CMakeLists.txt)
|
|
|
|
include(storage/CMakeLists.txt)
|
|
|
|
|
|
|
|
include(editor-support/cocosbuilder/CMakeLists.txt)
|
|
|
|
include(editor-support/cocostudio/CMakeLists.txt)
|
|
|
|
include(editor-support/spine/CMakeLists.txt)
|
|
|
|
|
|
|
|
include(../extensions/CMakeLists.txt)
|
|
|
|
|
|
|
|
set(COCOS_EDITOR_SUPPORT_SRC
|
|
|
|
${COCOS_CCB_SRC}
|
|
|
|
${COCOS_CS_SRC}
|
|
|
|
${COCOS_SPINE_SRC}
|
|
|
|
)
|
2014-09-10 03:18:31 +08:00
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
set(COCOS_SRC cocos2d.cpp
|
|
|
|
${COCOS_2D_SRC}
|
|
|
|
${COCOS_3D_SRC}
|
|
|
|
${COCOS_PLATFORM_SRC}
|
|
|
|
${COCOS_PHYSICS_SRC}
|
|
|
|
${COCOS_MATH_SRC}
|
|
|
|
${COCOS_RENDERER_SRC}
|
|
|
|
${COCOS_BASE_SRC}
|
|
|
|
${COCOS_AUDIO_SRC}
|
|
|
|
${COCOS_UI_SRC}
|
|
|
|
${COCOS_NETWORK_SRC}
|
2014-09-18 02:50:59 +08:00
|
|
|
${COCOS_EDITOR_SUPPORT_SRC}
|
|
|
|
${COCOS_EXTENSIONS_SRC}
|
2014-09-10 03:18:31 +08:00
|
|
|
)
|
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
if(MINGW)
|
2014-09-18 10:22:24 +08:00
|
|
|
find_package(Freetype REQUIRED)
|
|
|
|
find_package(WebP REQUIRED)
|
|
|
|
#find_package(MiniZip REQUIRED)
|
|
|
|
#${MINIZIP_INCLUDE_DIR}
|
|
|
|
|
|
|
|
#find_package(GLFW REQUIRED)
|
|
|
|
#${GLFW_INCLUDE_DIRS}
|
|
|
|
|
|
|
|
find_package(ZLIB REQUIRED)
|
|
|
|
|
|
|
|
find_package(Chipmunk REQUIRED)
|
|
|
|
|
|
|
|
message( STATUS "ZLIB dirs: ${ZLIB_INCLUDE_DIRS}")
|
|
|
|
message( STATUS "WEBP dirs: ${WEBP_INCLUDE_DIRS}")
|
|
|
|
message( STATUS "FREETYPE dirs: ${FREETYPE_INCLUDE_DIRS}")
|
|
|
|
message( STATUS "Chipmunk dirs: ${CHIPMUNK_INCLUDE_DIRS}")
|
|
|
|
|
|
|
|
include_directories(${FREETYPE_INCLUDE_DIRS} ${WEBP_INCLUDE_DIRS} ${ZLIB_INCLUDE_DIRS} ${CHIPMUNK_INCLUDE_DIRS})
|
|
|
|
|
2014-09-20 00:56:51 +08:00
|
|
|
else()
|
|
|
|
|
|
|
|
#todo: provide prebuild versions of minizip for android ios mac and msvc
|
|
|
|
#done: prebuilt version for mingw-w64 (linux distros should have them also)
|
|
|
|
# check for opensuse the buildbot system arch and ubuntu
|
|
|
|
|
2014-09-18 10:22:24 +08:00
|
|
|
include_directories(
|
2014-09-20 00:56:51 +08:00
|
|
|
../external/unzip)
|
|
|
|
|
|
|
|
endif()
|
2014-09-18 10:22:24 +08:00
|
|
|
|
2014-09-20 00:56:51 +08:00
|
|
|
#todo: provide prebuild versions of the xx libs for all platforms
|
|
|
|
include_directories(
|
|
|
|
../external/xxhash
|
|
|
|
../external/xxtea)
|
|
|
|
|
|
|
|
|
|
|
|
add_library(cocos2d ${BUILD_TYPE} ${COCOS_SRC})
|
|
|
|
|
|
|
|
|
|
|
|
if(MINGW)
|
2014-09-17 11:23:59 +08:00
|
|
|
set(PLATFORM_SPECIFIC_LIBS z jpeg png webp tiff curl websockets glfw3 glew32 opengl32 iconv freetype bz2)
|
|
|
|
elseif(WINDOWS)
|
|
|
|
set(PLATFORM_SPECIFIC_LIBS libjpeg libpng libwebp libtiff libcurl_imp libwebsockets freetype250 glfw3 glew32 opengl32 libiconv libzlib)
|
|
|
|
elseif(LINUX)
|
|
|
|
set(PLATFORM_SPECIFIC_LIBS jpeg webp tiff freetype curl websockets fontconfig png pthread glfw GLEW GL X11 rt z)
|
|
|
|
elseif(MACOSX)
|
2014-08-24 18:52:51 +08:00
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
INCLUDE_DIRECTORIES ( /System/Library/Frameworks )
|
|
|
|
|
|
|
|
FIND_LIBRARY(COCOA_LIBRARY Cocoa)
|
|
|
|
FIND_LIBRARY(OPENGL_LIBRARY OpenGL )
|
|
|
|
FIND_LIBRARY(AUDIOTOOLBOX_LIBRARY AudioToolbox)
|
|
|
|
FIND_LIBRARY(OPENAL_LIBRARY OpenAL )
|
|
|
|
FIND_LIBRARY(QUARTZCORE_LIBRARY QuartzCore )
|
|
|
|
FIND_LIBRARY(APPLICATIONSERVICES_LIBRARY ApplicationServices)
|
|
|
|
FIND_LIBRARY(IOKIT_LIBRARY IOKit)
|
|
|
|
FIND_LIBRARY(FOUNDATION_LIBRARY Foundation)
|
|
|
|
|
|
|
|
set(PLATFORM_SPECIFIC_LIBS
|
|
|
|
z jpeg png webp tiff curl glfw3
|
|
|
|
websockets
|
|
|
|
${COCOA_LIBRARY}
|
|
|
|
${OPENGL_LIBRARY}
|
|
|
|
${OPENAL_LIBRARY}
|
|
|
|
${AUDIOTOOLBOX_LIBRARY}
|
|
|
|
${QUARTZCORE_LIBRARY}
|
|
|
|
${APPLICATIONSERVICES_LIBRARY}
|
|
|
|
${IOKIT_LIBRARY}
|
|
|
|
${FOUNDATION_LIBRARY}
|
|
|
|
)
|
2014-09-10 03:18:31 +08:00
|
|
|
|
|
|
|
else()
|
|
|
|
message( FATAL_ERROR "Unsupported platform, CMake will exit" )
|
|
|
|
endif()
|
|
|
|
|
2014-09-17 11:23:59 +08:00
|
|
|
target_link_libraries(cocos2d chipmunk box2d tinyxml2 unzip xxhash ${PLATFORM_SPECIFIC_LIBS})
|
2014-08-24 18:52:51 +08:00
|
|
|
|
2014-05-02 04:01:51 +08:00
|
|
|
set_target_properties(cocos2d
|
|
|
|
PROPERTIES
|
|
|
|
ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
|
|
|
LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/lib"
|
2014-09-21 23:49:43 +08:00
|
|
|
VERSION "${COCOS2D_X_VERSION}"
|
2014-05-02 04:01:51 +08:00
|
|
|
)
|