Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/premake-4.x-stable.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstarkos <none@none>2008-12-30 02:20:44 +0300
committerstarkos <none@none>2008-12-30 02:20:44 +0300
commit6ca3b3004e4e6b62840280ace5135809533bac7e (patch)
tree5149a6f41f584e13cc8ca32f0d661c2ec851c9f1 /BUILD.txt
parent1f34f0c43f611aff51f4e3514bed9483d3614120 (diff)
Prepped support files for RC1
Diffstat (limited to 'BUILD.txt')
-rw-r--r--BUILD.txt25
1 files changed, 14 insertions, 11 deletions
diff --git a/BUILD.txt b/BUILD.txt
index 1a434d2..a34cc5c 100644
--- a/BUILD.txt
+++ b/BUILD.txt
@@ -1,7 +1,7 @@
PREMAKE BUILD INSTRUCTIONS
As of version 4.0, Premake is written in a mix of C and Lua. This mix
- makes it smaller, enables the templating features, and easier the
+ makes it smaller, enables the templating features, and makes the
whole thing easier to maintain. The trade-off is a couple of wrinkles
in the build process.
@@ -14,9 +14,9 @@ PREMAKE BUILD INSTRUCTIONS
GENERATING THE PROJECT FILES
If you downloaded a source code package from SourceForge, the project
- files are already included and you can skip ahead to the next section.
- If you downloaded the sources from Subversion, you'll need to generate
- new projects files before you can build.
+ files are already included (in build/) and you can skip ahead to the
+ next section. If you downloaded the sources from Subversion, you'll
+ need to generate new projects files before you can build.
In order to generate the project files, you need a working version of
Premake, either 3.x or 4.x versions, installed on your system. You can
@@ -34,16 +34,16 @@ GENERATING THE PROJECT FILES
premake --target gnu
premake --target vs2005
- Use the "--help" option to see all available targets.
+ Use the "--help" option to see all of the available targets.
RELEASE AND DEBUG BUILDS
Premake can be built in either "release" or "debug" modes. You can
- choose which configuration to build with the CONFIG argument:
+ choose which configuration to build with the "config" argument:
- make CONFIG=Debug -- build in debug mode
- make CONFIG=Release -- build in release mode
+ make config=debug -- build in debug mode
+ make config=release -- build in release mode
(IDEs like Visual Studio provide their own mechanism for switching
build configurations).
@@ -53,8 +53,8 @@ RELEASE AND DEBUG BUILDS
the disk at runtime, enabling compile-less code/test iterations. But
it needs some help to find the scripts.
- You can specify the location of the scripts in one of two ways. You
- can use the /scripts command line argument, like so:
+ You can specify the location of the scripts in one of two ways: using
+ the /scripts command line argument, like so:
premake4 /scripts=~/Code/premake4/src gmake
@@ -82,7 +82,10 @@ COMPILING SCRIPTS
CONFUSED?
I'll be glad to help you out. Stop by the main project website where
- you leave a note in the forums (the preferred approach), join the
+ you can leave a note in the forums (the preferred approach), join the
mailing list, or contact me directly.
http://industriousone.com/premake
+
+ Enjoy!
+ \ No newline at end of file