Make it actually compile, please

This commit is contained in:
Timothy Warren 2015-04-09 22:07:59 -04:00
parent da68257b13
commit 0561e531ef
2 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ PROGRAM_OBJECTS = $(patsubst %.cpp,%.o, $(PROGRAM_SRC))
BASE_FLAGS = -DSCI_LEXER -std=gnu++11
LDLIBS = $(TARGET) $(shell wx-config --libs base core aui stc) -lssh2
LDLIBS = $(TARGET) $(shell wx-config --libs base core aui stc adv) -lssh2
WX_CXXFLAGS = $(shell wx-config --cxxflags) $(BASE_FLAGS)
DEV_CXXFLAGS = -g -Wall -Wextra
CXXFLAGS = -Os

View File

@ -6,14 +6,14 @@
#include <wx/stc/stc.h>
// EditPane file extension to lexer mapping
map<string,int> TYROLEXER_MAPPING = {
/*map<string,int> TYROLEXER_MAPPING = {
{"c", wxSTC_LEX_CPP},
{"h", wxSTC_LEX_CPP},
{"cpp", wxSTC_LEX_CPP},
{"cxx", wxSTC_LEX_CPP},
{"py", wxSTC_LEX_PYTHON},
{"php", wxSTC_LEX_PHPSCRIPT}
};
};*/
#endif /* EDITPANEDEFINITIONS_H */