Wiki page Compiling_the_native_Windows_EFL changed with summary [Fix inline code quotes] by Joo Paulo Taylor Ienczak Zanette

This commit is contained in:
João Paulo Taylor Ienczak Zanette 2020-08-25 09:35:52 -07:00 committed by www-data
parent ab6a063799
commit 2d65b5f8c1
1 changed files with 8 additions and 7 deletions

View File

@ -40,7 +40,7 @@ Except for topic 6 (Environment variables) that can be consulted during the proc
> pip istall meson
</code>
> The version of mesmon used in this tutorial is the **0.53.2**, it is possible to directly install this version as follows `pip install meson==0.52.2` to check the installed summer use: `meson --version` or use `pip freeze` to check all installed packages and their versions.
> The version of mesmon used in this tutorial is the **0.53.2**, it is possible to directly install this version as follows ''pip install meson==0.52.2'' to check the installed summer use: ''meson --version'' or use ''pip freeze'' to check all installed packages and their versions.
> Check the python summer installed on your Windows, in this tutorial we are using Python 3.8
@ -49,6 +49,7 @@ Except for topic 6 (Environment variables) that can be consulted during the proc
<code>
> meson
</code>
The result should look like this:
<code>
ERROR: Must specify at least one directory name
@ -62,14 +63,14 @@ If the command is not recognized, finish the environment variables step, and try
3.1. Download the LLVM, the version used in this tutorial is 9.0.1, both this section and the higher versions can be found at: [[https://github.com/llvm/llvm-project/releases/|LVVM Download.]].
> Upon entering the corresponding section with the chosen version, a file with the following description (in this case with version 9.0.1) must be located: ``LLVM-9.0.1-win64.exe``, download this file.
> Upon entering the corresponding section with the chosen version, a file with the following description (in this case with version 9.0.1) must be located: ''LLVM-9.0.1-win64.exe'', download this file.
3.2. when installing, it is important to select at least one of the options below:
>[x] Add LLVM to the system PATH for all users.
>[x] Add LLVM to thr system PATH for current user.
In this case we install in `C:\Program Files\LLVM`.
In this case we install in ''C:\Program Files\LLVM''.
----
@ -105,18 +106,18 @@ To manage dependencies with vcpkg:
==python==
<note important>
* OBS: Python paths in this tutorial are considering `Python 3.8` is installed. Don't forget to check the respective paths according to the location of your current Python installation.
* OBS: Python paths in this tutorial are considering Python 3.8 is installed. Don't forget to check the respective paths according to the location of your current Python installation.
</note>
During python installation, you can select the option to add python environment variables automatically. If there is a problem with Meson, delete the existing variables and add as shown below:
* Open the windows environment variable editor, for the variables corresponding to the user, locate **`path`** and double-click it (or click the Edit button). In the next window, click the "New" button and add the following directories:
* Open the windows environment variable editor, for the variables corresponding to the user, locate **''path''** and double-click it (or click the Edit button). In the next window, click the "New" button and add the following directories:
* <code>C:\Users\<your-username>\AppData\Roaming\Python\Python38\Scripts</code>
* <code>C:\Python38</code>
* <code>C:\Python38\Scripts</code>
==OpenSSL==
In case you're using a custom OpenSSL installation (not the one from vcpkg), you may want to set `OPENSSL_DIR` environment variable in order to EFL search for your installation instead of vcpkg's. For this:
In case you're using a custom OpenSSL installation (not the one from vcpkg), you may want to set ''OPENSSL_DIR'' environment variable in order to EFL search for your installation instead of vcpkg's. For this:
* Open the windows environment variable editor. In user's variable list, click **New**:
* Set **Variable name** to:
* <code>OPENSSL_DIR</code>
@ -138,4 +139,4 @@ In case you're using a custom OpenSSL installation (not the one from vcpkg), you
- Delete the ''build'' directory;
- Delete every subdirectory inside ''subprojects'' (**NOTE: Do NOT delete the .wrap files!**)
* After you finish executing **configure.bat** execute **build.bat**:
* <code>>build.bat</code>
* <code>> build.bat</code>