mirror of https://github.com/zeldaret/tmc.git
moved mid2agb
This commit is contained in:
parent
d46eff5071
commit
3cad3fe8e0
|
|
@ -1 +0,0 @@
|
|||
mid2agb
|
||||
|
|
@ -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
|
||||
|
|
@ -4,3 +4,4 @@ add_subdirectory(asset_processor)
|
|||
add_subdirectory(bin2c)
|
||||
add_subdirectory(gbafix)
|
||||
add_subdirectory(gbagfx)
|
||||
add_subdirectory(mid2agb)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
file(GLOB_RECURSE sources *.cpp)
|
||||
|
||||
add_executable(mid2agb ${sources})
|
||||
target_include_directories(mid2agb PRIVATE .)
|
||||
|
||||
install(TARGETS mid2agb RUNTIME DESTINATION bin)
|
||||
Loading…
Reference in New Issue