chore: move compiler macros to header file

This commit is contained in:
hexlocation 2025-02-08 11:08:56 +00:00
parent d0f6bb3480
commit b963ad22a8
2 changed files with 3 additions and 3 deletions

View file

@ -11,9 +11,6 @@
#include <GroupLayoutBuilder.h>
#include <format>
#define APP_NAME "Renga"
#define APP_AUTHOR "hex_andre"
// quick and dirty function to quickly make text labels
BStringView *MakeText(const char* text)
{

3
App.h
View file

@ -1,6 +1,9 @@
#ifndef APP_H
#define APP_H
#define APP_NAME "Renga"
#define APP_AUTHOR "hex_andre"
#include <Application.h>
class App : public BApplication