hotfix-0001 #1

Merged
lowearthorbit merged 7 commits from hotfix-0001 into main 2026-03-14 13:44:35 +01:00
3 changed files with 11 additions and 3 deletions

View File

@@ -10,7 +10,9 @@ jobs:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: install deps - name: install deps
run: sudo apt install cmake run: |
apt update
apt install cmake -y
- name: build - name: build
run: | run: |

View File

@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 4.1) cmake_minimum_required(VERSION 3.10)
project(curtle VERSION 0.1.0 LANGUAGES C) project(curtle VERSION 0.1.1 LANGUAGES C)
add_library(curtle add_library(curtle
src/linear_algebra.c src/linear_algebra.c

View File

@@ -0,0 +1,6 @@
#ifndef CURTLE_H
#define CURTLE_H
#include "curtle/linear_algebra.h"
#endif