fixes the ci pipeline Reviewed-on: #1
This commit was merged in pull request #1.
This commit is contained in:
@@ -10,7 +10,9 @@ jobs:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: install deps
|
||||
run: sudo apt install cmake
|
||||
run: |
|
||||
apt update
|
||||
apt install cmake -y
|
||||
|
||||
- name: build
|
||||
run: |
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
cmake_minimum_required(VERSION 4.1)
|
||||
project(curtle VERSION 0.1.0 LANGUAGES C)
|
||||
cmake_minimum_required(VERSION 3.10)
|
||||
project(curtle VERSION 0.1.1 LANGUAGES C)
|
||||
|
||||
add_library(curtle
|
||||
src/linear_algebra.c
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
#ifndef CURTLE_H
|
||||
#define CURTLE_H
|
||||
|
||||
#include "curtle/linear_algebra.h"
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user