chore: move compiler macros to header file
This commit is contained in:
parent
d0f6bb3480
commit
b963ad22a8
2 changed files with 3 additions and 3 deletions
3
App.cpp
3
App.cpp
|
@ -11,9 +11,6 @@
|
||||||
#include <GroupLayoutBuilder.h>
|
#include <GroupLayoutBuilder.h>
|
||||||
#include <format>
|
#include <format>
|
||||||
|
|
||||||
#define APP_NAME "Renga"
|
|
||||||
#define APP_AUTHOR "hex_andre"
|
|
||||||
|
|
||||||
// quick and dirty function to quickly make text labels
|
// quick and dirty function to quickly make text labels
|
||||||
BStringView *MakeText(const char* text)
|
BStringView *MakeText(const char* text)
|
||||||
{
|
{
|
||||||
|
|
3
App.h
3
App.h
|
@ -1,6 +1,9 @@
|
||||||
#ifndef APP_H
|
#ifndef APP_H
|
||||||
#define APP_H
|
#define APP_H
|
||||||
|
|
||||||
|
#define APP_NAME "Renga"
|
||||||
|
#define APP_AUTHOR "hex_andre"
|
||||||
|
|
||||||
#include <Application.h>
|
#include <Application.h>
|
||||||
|
|
||||||
class App : public BApplication
|
class App : public BApplication
|
||||||
|
|
Loading…
Reference in a new issue