From 31604f8f62c4a83d9f89b3d07631de26fe9f1fba Mon Sep 17 00:00:00 2001 From: Alex Reinking Date: Thu, 8 Sep 2022 04:53:13 -0400 Subject: Create CMake package for wabt (#1980) Allows users to install wabt to a local directory and use find_package to load the wabt and wasm-rt-impl libraries into their build. These users, as well as FetchContent users, may link to these libraries using, for example: find_package(wabt REQUIRED) target_link_libraries(myApp PRIVATE wabt::wabt) Note the wabt:: namespace. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bc0ba143..47824eba 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -132,7 +132,7 @@ jobs: - name: Detect minimum CMake version run: > awk 'match($0, /cmake_minimum_required\(VERSION *([0-9]+\.[0-9]+)\)/, a) - { print "WABT_CMAKE_VER=" a[1] }' CMakeLists.txt | tee $GITHUB_ENV + { print "WABT_CMAKE_VER=" a[1]; exit; }' CMakeLists.txt | tee $GITHUB_ENV - name: Install minimum CMake run: | python -m pip install -U setuptools wheel pip -- cgit v1.2.3