Add option in INSTALL.md to copy data/ dir to ~/.aseprite on Linux

This commit is contained in:
David Capello 2013-11-23 16:01:34 -03:00
parent 88d8235e86
commit a7716cfc62

View File

@ -1,16 +1,16 @@
# What platforms are supported?
You should be able to compile ASEPRITE successfully on the following
You should be able to compile Aseprite successfully on the following
platforms:
* Windows + MSVC 2008 Express + DirectX SDK
* Linux + GCC
* Mac OS X
# How can I compile ASEPRITE?
# How can I compile Aseprite?
The new build system for ASEPRITE is [CMake](http://www.cmake.org/).
The following are the steps to compile ASEPRITE (in this case we have
The new build system for Aseprite is [CMake](http://www.cmake.org/).
The following are the steps to compile Aseprite (in this case we have
the source code in a directory called `aseprite-source`):
1. Make a build directory to leave all the files that are result of
@ -19,7 +19,7 @@ the source code in a directory called `aseprite-source`):
C:\...\>cd aseprite-source
C:\...\aseprite-source>mkdir build
In this way, if you want to start with a fresh copy of ASEPRITE
In this way, if you want to start with a fresh copy of Aseprite
source code, you can remove the `build` directory and start again.
2. Enter in the new directory and execute cmake giving to it
@ -55,13 +55,14 @@ the source code in a directory called `aseprite-source`):
commands, you have to compile the project executing make, nmake,
opening the solution, etc.
4. When the project is compiled, you can copy `build/src/aseprite.exe`
file to `aseprite-source` and execute it. If you have used a Visual
Studio project, you can copy the whole `data/` directory to
`build/src/RelWithDebInfo/` so you can run/debug the program from
Visual Studio IDE.
4. When the project is compiled, you can copy the resulting executable
file (e.g. `build/src/aseprite.exe`) to `aseprite-source` and
execute it. If you have used a Visual Studio project, you can copy
the whole `data/` directory to `build/src/RelWithDebInfo/` so you
can run/debug the program from Visual Studio IDE. On Linux, you can
copy the `data/` directory in `~/.aseprite/` directory.
# How to profile ASEPRITE?
# How to profile Aseprite?
You must compile with `Profile` configuration. For example on Linux: