WWW-www.enlightenment.org pushed a commit to branch master. http://git.enlightenment.org/website/www-content.git/commit/?id=fe8db9f225b9b9ec0392dca2fa2686c2dc3501b7
commit fe8db9f225b9b9ec0392dca2fa2686c2dc3501b7 Author: Felipe Magno de Almeida <felipe.m.alme...@gmail.com> Date: Wed Sep 9 20:34:36 2020 -0700 Wiki page Compiling_the_native_Windows_EFL changed with summary [] by Felipe Magno de Almeida --- pages/Compiling_the_native_Windows_EFL.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/pages/Compiling_the_native_Windows_EFL.txt b/pages/Compiling_the_native_Windows_EFL.txt index cce756f27..578f9a4a9 100644 --- a/pages/Compiling_the_native_Windows_EFL.txt +++ b/pages/Compiling_the_native_Windows_EFL.txt @@ -93,7 +93,7 @@ To manage dependencies with vcpkg: 4.1. Follow the **Vcpkg Installation Guide** in [[https://github.com/microsoft/vcpkg|Vcpkg's Github Repository]]. -4.2. Install the following dependencies: +4.2. Install the following dependencies for x64 windows: - OpenSSL; - Freetype; @@ -101,10 +101,8 @@ To manage dependencies with vcpkg: - Libpng; - Zlib. - Or, in a single command line (considering vcpkg is in your PATH or that you're inside vcpkg's directory): - <code> - > vcpkg install openssl:x64-windows freetype:x64-windows check:x64-windows libpng:x64-windows zlib:x64-windows +c:\path-to-vcpkg> vcpkg install openssl:x64-windows freetype:x64-windows check:x64-windows libpng:x64-windows zlib:x64-windows </code> This way vcpkg will download, setup and install all of those dependencies. @@ -133,7 +131,7 @@ This file is run everytime by ''configure.bat'' as a special way to set local cu It is necessary to add the vcpkg-installed dependencies to PATH environment variable so EFL binaries built and used in efl's build can find its dependencies. -<code>efl-path> set "PATH=%PATH%;C:\path-to-vcpkg\installed\x64-windows\bin"</code> +<code>c:\efl-path> set "PATH=%PATH%;C:\path-to-vcpkg\installed\x64-windows\bin"</code> Then we can configure and build and install --