compiles!!! (seg faults)

This commit is contained in:
Gregory Wells
2025-06-24 12:41:59 -04:00
parent 953feebfe4
commit 78202825db
8 changed files with 118 additions and 141 deletions

View File

@@ -0,0 +1,5 @@
set(CMAKE_EXPORT_COMPILE_COMMANDS on)
project(GryphnLoader)
file(GLOB_RECURSE SOURCE_FILES CONFIGURE_DEPENDS "src/*.c")
add_library(GryphnLoader STATIC ${SOURCE_FILES})

View File

@@ -0,0 +1,5 @@
#include "stdio.h"
void test_loader() {
printf("Loader works %i\n", 32);
}

View File

@@ -0,0 +1,3 @@
#pragma once
void test_loader();