Initial commit

This commit is contained in:
2025-03-24 00:28:44 +01:00
parent a24b21549f
commit 789cb89125
7 changed files with 83 additions and 0 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
SHELL := /bin/bash
.DEFAULT_GOAL := build
.PHONY: build
build:
@if test -d build; then rm -fr build; fi
@cmake -B build -S . -DCMAKE_PREFIX_PATH="/usr;/usr/lib64;/usr/lib64/cmake" -DCMAKE_SUPPRESS_DEVELOPER_WARNINGS=ON
@cmake --build build
@build/hello