mirror of https://github.com/zeldaret/tmc.git
moved preproc
This commit is contained in:
parent
3cad3fe8e0
commit
99c58ddf1d
|
@ -1 +0,0 @@
|
|||
preproc
|
|
@ -1,20 +0,0 @@
|
|||
CXX := g++
|
||||
|
||||
CXXFLAGS := -std=c++11 -O2 -Wall -Wno-switch -Werror
|
||||
|
||||
SRCS := asm_file.cpp c_file.cpp charmap.cpp preproc.cpp string_parser.cpp \
|
||||
utf8.cpp
|
||||
|
||||
HEADERS := asm_file.h c_file.h char_util.h charmap.h preproc.h string_parser.h \
|
||||
utf8.h
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: preproc
|
||||
@:
|
||||
|
||||
preproc: $(SRCS) $(HEADERS)
|
||||
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
|
||||
|
||||
clean:
|
||||
$(RM) preproc preproc.exe
|
|
@ -5,3 +5,4 @@ add_subdirectory(bin2c)
|
|||
add_subdirectory(gbafix)
|
||||
add_subdirectory(gbagfx)
|
||||
add_subdirectory(mid2agb)
|
||||
add_subdirectory(preproc)
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
file(GLOB_RECURSE sources *.cpp)
|
||||
|
||||
add_executable(preproc ${sources})
|
||||
target_include_directories(preproc PRIVATE .)
|
||||
|
||||
install(TARGETS preproc RUNTIME DESTINATION bin)
|
Loading…
Reference in New Issue