- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjava-embedded.pro
More file actions
Latest commit
28 lines (24 loc) · 511 Bytes
/
Copy pathjava-embedded.pro
File metadata and controls
28 lines (24 loc) · 511 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
QMAKE_CXXFLAGS += -std=c++2b
LIBS += -lfmt
DESTDIR = bin
TARGET = pico-java
SOURCES += \
boards/gamebuino.cpp\
boards/pico.cpp\
boards/picosystem.cpp\
classfile.cpp\
main.cpp
unix:SOURCES += helpers_linux.cpp
win32:SOURCES += helpers_windows.cpp
HEADERS += \
boards/gamebuino.h\
boards/pico.h\
boards/picosystem.h\
classfile.h\
globals.h\
helpers.h\
stb_image.h