Skip to content

Added Cmake commands to install byteme for find_package. #1

Added Cmake commands to install byteme for find_package.

Added Cmake commands to install byteme for find_package. #1

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Check CMake install
jobs:
install:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get latest CMake
uses: lukka/get-cmake@latest
- name: Install byteme
run: |
git clone https://github.com/LTLA/byteme dep-byteme --depth=1
cd dep-byteme
cmake -S . -B build
sudo cmake --install build
- name: Configure the build
run: cmake -S . -B build
- name: Install the library
run: sudo cmake --install build
- name: Test downstream usage
run: |
mkdir _downstream
touch _downstream/source.cpp
cat << EOF > _downstream/CMakeLists.txt
cmake_minimum_required(VERSION 3.24)
project(test_install)
add_executable(whee source.cpp)
find_package(tatami_tatami)
target_link_libraries(whee tatami::eminem)
EOF
cd _downstream && cmake -S . -B build