您好,登錄后才能下訂單哦!
LeanCloud C++ SDK以開源方式作為githum項目存在,地址是:https://github.com/leancloud/cpp-sdk。
此SDK的主要目的是為以Cocos2d-X為代表的C++開發(fā)框架提供支持。因為本人主要使用Cocos2d-X C++開發(fā)手機游戲,同時又想測試leancould的云存儲支持技術,所以選擇了LeanCloud C++ SDK。
此SDK不同于leancloud其他官方SDK,操作略有些麻煩,但也不盡然。以下是本人根據(jù)上面開源項目中提供的安裝指南操作結(jié)果的記錄。
注:
(1)測試環(huán)境為iMac,OS X:10.11
(2)根據(jù)官方論壇(https://forum.leancloud.cn/t/leancloud/1474)中說明『目前我們的 c++ sdk 還只有最基本的數(shù)據(jù)存儲、查詢功能,推送、聊天都還不支持。』這一說明的記錄時間為:2015-07-07.
安裝homebrew, a package management tool for Mac OS X
開源網(wǎng)站中給出的安裝命令格式為:
ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
根據(jù)homebrew官方網(wǎng)站提示,我使用的命令方式如下:
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
【說明】mac上默認已經(jīng)安裝了ruby、git和curl這樣的基本工具。Homebrew的口號是『使 OS X 更完整』。你可以到其網(wǎng)址http://brew.sh處作詳細了解。其實,http://blog.csdn.net/delphiwcdj/article/details/19679891這個短文已經(jīng)對homebrew這個MAC上的工具作了足夠的說明。當然,如果你是一位nodejs用戶,則你對npm這樣的管理工具一定不陌生;那么,homebrew之于Mac相當于npm之于nodejs。強烈建議你到homebrew官方網(wǎng)站參考最新的安裝方式來安裝homebrew到你的MAC上。有了homebrew后,再使用之安裝其他工具便容易多了,安裝的工具及步驟如下。
安裝CMake。CMake是 cross-platform, open-source build system:
brew install cmake
Doxygen, the de facto standard tool for generating documentation from annotated C++ sources
brew install doxygen
Boost, a set of libraries for the C++ programming language that provide support for tasks and structures such as linear algebra, pseudorandom number generation, multithreading, p_w_picpath processing, regular expressions, and unit testing.
brew install boost
注:這一步花費時間較長,可能要10多分鐘。
現(xiàn)在,使用上面安裝的cmake來構建我們的
C++ SDK,步驟如下:
Get git submodules
$ git submodule init $ git submodule update
【注意】如果你已經(jīng)使用git clone操作了一部分內(nèi)容,并且git clone下來的工程中帶有submodule時,初始的時候,submodule的內(nèi)容并不會自動下載下來的,此時,只需執(zhí)行如下命令: git submodule update --init --recursive 即可將子模塊內(nèi)容下載下來后工程才不會缺少相應的文件。
build and install cpp-netlib
$ cd lib/cpp-netlib $ mkdir cpp-netlib-build $ cd cpp-netlib-build $ cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ $ make -j4 && make install
build and install jsoncpp
$ cd lib/jsoncpp $ mkdir jsoncpp-build $ cd jsoncpp-build $ cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ $ make -j4 && make install
build AVOSCloud C++ SDK
$ cd cpp-sdk $ mkdir cpp-sdk-build $ cd cpp-sdk-build $ cmake .. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ $ make -j4 && make install
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。