diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-04-04 03:12:26 +0300 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2025-04-04 03:32:30 +0300 |
commit | ce2c37356c674e5893f80786616355b4659b43ad (patch) | |
tree | 8da7297a20bcee66f73eaddcd42a84483a0b30d1 /README | |
parent | a4c13e7ce77b86cf36bc6b0a79220b97f8b2a1b8 (diff) |
Convert from make to meson
Meson makes cross compilation easier. Replace the make-based build
system with meson.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'README')
-rw-r--r-- | README | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -20,16 +20,18 @@ The vsp-tests suite requires the following tools to be installed on the host to generate the test scripts, applications and data. * gcc -* make +* meson +* ninja * python After installing the needed packages, you can build the test suite by running - make + meson setup build/ + meson compile -C build/ in the vsp-tests root directory. Then, to install the test suite, run - make install INSTALL_DIR=/path/to/target/directory + meson install -C build/ --destdir=/path/to/target/directory This will copy the test scripts and applications to the target directory to be copied or exported to the host. |