moved mid2agb

This commit is contained in:
Henny022p 2021-11-23 06:30:50 +01:00
parent d46eff5071
commit 3cad3fe8e0
15 changed files with 7 additions and 19 deletions

View File

@ -1 +0,0 @@
mid2agb

View File

@ -1,18 +0,0 @@
CXX := g++
CXXFLAGS := -std=c++11 -O2 -Wall -Wno-switch -Werror
SRCS := agb.cpp error.cpp main.cpp midi.cpp tables.cpp
HEADERS := agb.h error.h main.h midi.h tables.h
.PHONY: all clean
all: mid2agb
@:
mid2agb: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean:
$(RM) mid2agb mid2agb.exe

View File

@ -4,3 +4,4 @@ add_subdirectory(asset_processor)
add_subdirectory(bin2c)
add_subdirectory(gbafix)
add_subdirectory(gbagfx)
add_subdirectory(mid2agb)

View File

@ -0,0 +1,6 @@
file(GLOB_RECURSE sources *.cpp)
add_executable(mid2agb ${sources})
target_include_directories(mid2agb PRIVATE .)
install(TARGETS mid2agb RUNTIME DESTINATION bin)