Skip to content

Commit

Permalink
Added macOS action
Browse files Browse the repository at this point in the history
  • Loading branch information
Géry Casiez committed Aug 19, 2023
1 parent 0b2acef commit d1d1271
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/macOS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: macOS

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Install Qt6
run: |
brew update
brew install qt
- name: compile
run: |
qmake
make
- name: Save the compile library
uses: actions/upload-artifact@v3
with:
name: libpointing
path: pointing/libpointing.a
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ Libpointing is an open-source cross-platform library written in C++ that provide

- If you use libpointing for academic purposes, please cite: Casiez, G. & Roussel, N. (2011). No more bricolage! Methods and tools to characterize, replicate and compare pointing transfer functions. In proceedings of UIST'11, the 24th ACM Symposium on User Interface Software and Technology, 603-614. ACM Press. [DOI](http://dx.doi.org/10.1145/2047196.2047276)

[![DOI](https://img.shields.io/badge/doi-10.1145%2F2047196.2047276-blue)](https://doi.org/10.1145/2047196.2047276)

```
@inproceedings{Casiez:2011:NMB:2047196.2047276,
author = {Casiez, G{\'e}ry and Roussel, Nicolas},
Expand Down

0 comments on commit d1d1271

Please sign in to comment.