Return-Path: X-Original-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-flex-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 02CB99E56 for ; Sat, 31 Mar 2012 00:28:31 +0000 (UTC) Received: (qmail 46997 invoked by uid 500); 31 Mar 2012 00:28:30 -0000 Delivered-To: apmail-incubator-flex-commits-archive@incubator.apache.org Received: (qmail 46969 invoked by uid 500); 31 Mar 2012 00:28:30 -0000 Mailing-List: contact flex-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: flex-dev@incubator.apache.org Delivered-To: mailing list flex-commits@incubator.apache.org Received: (qmail 46962 invoked by uid 99); 31 Mar 2012 00:28:30 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Mar 2012 00:28:30 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED,T_FRT_PROFILE2 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 Mar 2012 00:28:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 5BCB923888FE; Sat, 31 Mar 2012 00:28:09 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1307663 - /incubator/flex/trunk/README Date: Sat, 31 Mar 2012 00:28:09 -0000 To: flex-commits@incubator.apache.org From: cframpton@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120331002809.5BCB923888FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cframpton Date: Sat Mar 31 00:28:08 2012 New Revision: 1307663 URL: http://svn.apache.org/viewvc?rev=1307663&view=rev Log: Instructions for how to build once the modules directory is in place. Added: incubator/flex/trunk/README (with props) Added: incubator/flex/trunk/README URL: http://svn.apache.org/viewvc/incubator/flex/trunk/README?rev=1307663&view=auto ============================================================================== --- incubator/flex/trunk/README (added) +++ incubator/flex/trunk/README Sat Mar 31 00:28:08 2012 @@ -0,0 +1,84 @@ +Apache Flex (Flex) +================== + + Apache Flex is an application framework for easily building Flash-based applications + for mobile devices, the browser and desktop. + + For detailed information about Apache Flex please visit + http://incubator.apache.org/flex/ + + Apache Flex is a large project with many pieces. The framework is implemented + in Actionscript and the compiler is implemented in Java. + + Currently supported platforms include: + + Microsoft Windows + Mac OS X + Apple iOS + Google Android + RIM BlackBerry + + Apache Flex is the software evolution of the popular Adobe Flex SDK project. + + The community surrounding Flex is vast, diverse, distributed globally, and with all + levels of proficiency in software development. It is estimated that there are between + 350,000 and 500,000 Flex developers worldwide. + +Getting the latest sources via Subversion +========================================= + + You can always checkout the latest source via subversion using the following + command: + + svn co https://svn.apache.org/repos/asf/incubator/flex/trunk flex + + For further information visit http://incubator.apache.org/flex/source.html + +Building Apache Flex +==================== + + Apache Flex is a large project and depends on several external libraries which + are downloaded as part of the build process. + + Before building Flex you must install: + Java SDK 1.5.0_13 or greater + Ant 1.7.0 or greater + + The following environment variables must be set: + + JAVA_HOME + ANT_HOME + + The PATH must include + + bin directory of Flex SDK + bin directory of Ant + bin directory of Java + + For testing, the Flash Player's mm.cfg file must have the following entries + + ErrorReportingEnable=1 + TraceOutputFileEnable=1 + + and a FlashPlayerTrust file must allow local SWFs to access local files. + + With having all prerequisites in place, you can simply run + + cd + ant [main] (the default target is main) + + or + + ant release + + To generate a source distro, build the sources, and generate a binary-distro. + The output distros can be found in the out subdirectory. + + To clean the build, of everything other than the downloaded third-party code use + + ant clean + + To clean the build, of everything, including than the downloaded third-party code use + + ant super-clean + Propchange: incubator/flex/trunk/README ------------------------------------------------------------------------------ svn:eol-style = native