Wiki page windows-start.md changed with summary [] by Vincent Torri

This commit is contained in:
Vincent Torri 2023-08-16 09:29:09 -07:00 committed by www-data
parent 04c2396592
commit 5a9c4fd2a1
1 changed files with 44 additions and 0 deletions

View File

@ -51,6 +51,50 @@ This will install all the dependencies of the EFL in `$HOME/ewpi_64`
### Step 3: Installing the EFL ###
1. In the MSYS2 terminal, in a directory, clone the EFL directory : `git clone https://git.enlightenment.org/enlightenment/efl.git`
2. Save the following script in the `efl`directory :
```bash
#! /bin/bash
export EWPI_PATH=$HOME/ewpi_64
export PKG_CONFIG_PATH=$EWPI_PATH/lib/pkgconfig
export CPPFLAGS=-I$EWPI_PATH/include
export LDFLAGS=-L$EWPI_PATH/lib
rm -rf builddir
meson setup \
--prefix=$HOME/efl_64 \
--libdir=lib \
--buildtype=release \
--strip \
--default-library shared \
-Dsystemd=false \
-Dpulseaudio=false \
-Dv4l2=false \
-Dlibmount=false \
-Deeze=false \
-Dx11=false \
-Dxinput2=false \
-Devas-loaders-disabler='pdf','ps','rsvg','json' \
-Dopengl=none \
-Dpixman=true \
-Dembedded-lz4=false \
-Dfribidi=true \
-Dinput=false \
-Dbuild-examples=false \
-Dbuild-tests=false \
-Dbindings='cxx' \
-Dlua-interpreter=luajit \
-Delua=true \
builddir
ninja -C builddir install
```
Once it is finished, you can test `elementary_test`
### Step 4: Configuring the Software ###
### Step 5: Carrying out Post Installation Tasks ###