���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /usr/local/FlashphonerWebCallServer/client/examples/demo/rtmfp-client/chat/ |
<?xml version="1.0" encoding="utf-8"?> <project name="rtmfp-chat" default="linux" basedir="."> <property name="PRODUCT_NAME" value="WCS"/> <property name="DEPLOY_DIR" value="."/> <property file="./build.properties"/> <target name="linux" depends="clean"> <property name="FLEX_HOME" value="${FLEX_HOME_LINUX}"/> <ant target="main"/> </target> <target name="windows" depends="clean"> <property name="FLEX_HOME" value="${FLEX_HOME_WINDOWS}"/> <ant target="main"/> </target> <target name="main"> <taskdef resource="flexTasks.tasks" classpath="${FLEX_HOME}/ant/lib/flexTasks.jar"/> <mxmlc output="${DEPLOY_DIR}/bin/chat.swf" file="${basedir}/src/chat.mxml" swf-version="${SWF_VERSION}" target-player="${PLAYER_VERSION}" compatibility-version="4" static-link-runtime-shared-libraries="true"> <source-path path-element="${basedir}/src"/> <compiler.external-library-path dir="${FLEX_HOME}/frameworks/libs/player/${PLAYER_VERSION}" append="true"> <include name="playerglobal.swc"/> </compiler.external-library-path> </mxmlc> </target> <target name="clean"> <delete file="bin/chat.swf" includeEmptyDirs="true"/> <delete dir="${DEPLOY_DIR}/asdoc" includeEmptyDirs="true"/> </target> </project>