initial commit

This commit is contained in:
Lysann Tranvouez 2025-09-27 23:12:16 +02:00
commit c0975230fe
10 changed files with 302 additions and 0 deletions

9
CMakeLists.txt Normal file
View file

@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 4.0)
project(mach_detours C)
set(CMAKE_C_STANDARD 23)
add_library(mach_detours SHARED
mach_detours.c
mach_detours.h
)