Update Test Plugins

This commit is contained in:
Penaz 2026-03-25 21:57:46 +01:00
parent 3f2ba7f54c
commit bbcd574e08
4 changed files with 7 additions and 7 deletions

View file

@ -1,2 +1,2 @@
all:
gcc -shared -fPIC -o test_plugin.so -I ../../src/plugins/ -I ../../src/lasr -L../../build/ test_plugin.c
gcc -shared -fPIC -o test_plugin.so -I ../../ -L../../build/ test_plugin.c

View file

@ -1,6 +1,6 @@
#include "include/plugins/plugin.h"
#include "include/plugins/plugin_utils.h"
#include "lua.h"
#include "plugin.h"
#include "plugin_utils.h"
#include <stdio.h>
const char plugin_name[] = "Test Plugin";

View file

@ -1,2 +1,2 @@
all:
gcc -shared -fPIC -o test_plugin2.so -I ../../src/plugins/ -I ../../src/lasr -I ../../src -L../../build/ test_plugin.c
gcc -shared -fPIC -o test_plugin2.so -I ../../ -L../../build/ test_plugin.c

View file

@ -1,6 +1,6 @@
#include "plugin.h"
#include "plugin_utils.h"
#include "timer.h"
#include "include/plugins/plugin.h"
#include "include/plugins/plugin_utils.h"
#include "include/timer.h"
#include <stdio.h>
const char plugin_name[] = "Test Plugin 2";