compiles!!! (seg faults)
This commit is contained in:
5
projects/loader/CMakeLists.txt
Normal file
5
projects/loader/CMakeLists.txt
Normal 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})
|
5
projects/loader/src/gryphn_loader.c
Normal file
5
projects/loader/src/gryphn_loader.c
Normal file
@@ -0,0 +1,5 @@
|
||||
#include "stdio.h"
|
||||
|
||||
void test_loader() {
|
||||
printf("Loader works %i\n", 32);
|
||||
}
|
3
projects/loader/src/gryphn_loader.h
Normal file
3
projects/loader/src/gryphn_loader.h
Normal file
@@ -0,0 +1,3 @@
|
||||
#pragma once
|
||||
|
||||
void test_loader();
|
Reference in New Issue
Block a user