Fixed lack of map header in crossgen.hpp

This commit is contained in:
2015-06-11 22:23:04 +03:00
parent a9550c5085
commit 0481d8272a
3 changed files with 9 additions and 8 deletions

View File

@@ -1,13 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<CodeLite_Workspace Name="CrossGen" Database="">
<Project Name="wxCrossGen" Path="wxCrossGen/wxCrossGen.project" Active="Yes"/>
<Project Name="CrossBench" Path="CrossBench/CrossBench.project"/>
<Project Name="wxCrossGen" Path="wxCrossGen/wxCrossGen.project" Active="No"/>
<Project Name="CrossBench" Path="CrossBench/CrossBench.project" Active="Yes"/>
<BuildMatrix>
<WorkspaceConfiguration Name="Debug" Selected="no">
<WorkspaceConfiguration Name="Debug" Selected="yes">
<Project Name="wxCrossGen" ConfigName="Debug"/>
<Project Name="CrossBench" ConfigName="Debug"/>
</WorkspaceConfiguration>
<WorkspaceConfiguration Name="Release" Selected="yes">
<WorkspaceConfiguration Name="Release" Selected="no">
<Project Name="wxCrossGen" ConfigName="Release"/>
<Project Name="CrossBench" ConfigName="Release"/>
</WorkspaceConfiguration>

View File

@@ -1,8 +1,8 @@
.PHONY: clean All
All:
@echo "----------Building project:[ wxCrossGen - Release ]----------"
@cd "wxCrossGen" && $(MAKE) -f "wxCrossGen.mk"
@echo "----------Building project:[ CrossBench - Debug ]----------"
@cd "CrossBench" && $(MAKE) -f "CrossBench.mk"
clean:
@echo "----------Cleaning project:[ wxCrossGen - Release ]----------"
@cd "wxCrossGen" && $(MAKE) -f "wxCrossGen.mk" clean
@echo "----------Cleaning project:[ CrossBench - Debug ]----------"
@cd "CrossBench" && $(MAKE) -f "CrossBench.mk" clean

View File

@@ -4,6 +4,7 @@
#include <set>
#include <vector>
#include <cstdint>
#include <map>
typedef std::map<wxString,wxString> DictType;
typedef std::vector< std::vector<wxChar> > GridType;