rtmpCumulus編譯環境
1.vs2008 (vs9)(vc9)
2.poco lib 1.4.4
3.openssl 1.0.1
4.lua 5.1
命令行編譯:
須要把各個庫路徑寫到 Microsoft Visual Studio 9.0/Common7/Tools/vsvars32.bat
set WindowsSdkDir=C:\Program Files\Microsoft SDKs\Windows\v6.0A\
IDE編譯:須要把各個庫路徑添加到 項目和解決方案》C++目錄》包含文件、庫文件
poco庫的編譯:
1》解壓poco-1.4.4-all.zip 【POCO C++ Libraries source tree does not contain spaces】
依賴包:
The following libraries require third-party software (header files and libraries) being installed to build properly:
- NetSSL_OpenSSL and Crypt require OpenSSL.
- Data/ODBC requires ODBC (Microsoft ODBC on Windows, unixODBC or iODBC on Unix/Linux)
- Data/MySQL requires the MySQL client.
2》運行build_vs90.cmd ;【能夠修改其share option to all,爲了編譯各類版本】
@echo off
if defined VS90COMNTOOLS (
call "%VS90COMNTOOLS%\vsvars32.bat")
@@上面這一步是加載vc編譯環境;INCLUDE,LIB環境變量
buildwin 90 build all both Win32 samples
@@上面這一步是編譯
@rem buildwin 90 build shared both Win32 samples STLport 5.0編譯: 1》運行configure.bat msvc9 生成/build/lib/makefile; cd buidl/lib 在此目錄下運行 namke clean install