Fixed lack of map header in crossgen.hpp
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<CodeLite_Workspace Name="CrossGen" Database="">
|
<CodeLite_Workspace Name="CrossGen" Database="">
|
||||||
<Project Name="wxCrossGen" Path="wxCrossGen/wxCrossGen.project" Active="Yes"/>
|
<Project Name="wxCrossGen" Path="wxCrossGen/wxCrossGen.project" Active="No"/>
|
||||||
<Project Name="CrossBench" Path="CrossBench/CrossBench.project"/>
|
<Project Name="CrossBench" Path="CrossBench/CrossBench.project" Active="Yes"/>
|
||||||
<BuildMatrix>
|
<BuildMatrix>
|
||||||
<WorkspaceConfiguration Name="Debug" Selected="no">
|
<WorkspaceConfiguration Name="Debug" Selected="yes">
|
||||||
<Project Name="wxCrossGen" ConfigName="Debug"/>
|
<Project Name="wxCrossGen" ConfigName="Debug"/>
|
||||||
<Project Name="CrossBench" ConfigName="Debug"/>
|
<Project Name="CrossBench" ConfigName="Debug"/>
|
||||||
</WorkspaceConfiguration>
|
</WorkspaceConfiguration>
|
||||||
<WorkspaceConfiguration Name="Release" Selected="yes">
|
<WorkspaceConfiguration Name="Release" Selected="no">
|
||||||
<Project Name="wxCrossGen" ConfigName="Release"/>
|
<Project Name="wxCrossGen" ConfigName="Release"/>
|
||||||
<Project Name="CrossBench" ConfigName="Release"/>
|
<Project Name="CrossBench" ConfigName="Release"/>
|
||||||
</WorkspaceConfiguration>
|
</WorkspaceConfiguration>
|
||||||
|
|||||||
8
Makefile
8
Makefile
@@ -1,8 +1,8 @@
|
|||||||
.PHONY: clean All
|
.PHONY: clean All
|
||||||
|
|
||||||
All:
|
All:
|
||||||
@echo "----------Building project:[ wxCrossGen - Release ]----------"
|
@echo "----------Building project:[ CrossBench - Debug ]----------"
|
||||||
@cd "wxCrossGen" && $(MAKE) -f "wxCrossGen.mk"
|
@cd "CrossBench" && $(MAKE) -f "CrossBench.mk"
|
||||||
clean:
|
clean:
|
||||||
@echo "----------Cleaning project:[ wxCrossGen - Release ]----------"
|
@echo "----------Cleaning project:[ CrossBench - Debug ]----------"
|
||||||
@cd "wxCrossGen" && $(MAKE) -f "wxCrossGen.mk" clean
|
@cd "CrossBench" && $(MAKE) -f "CrossBench.mk" clean
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
#include <set>
|
#include <set>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
|
#include <map>
|
||||||
|
|
||||||
typedef std::map<wxString,wxString> DictType;
|
typedef std::map<wxString,wxString> DictType;
|
||||||
typedef std::vector< std::vector<wxChar> > GridType;
|
typedef std::vector< std::vector<wxChar> > GridType;
|
||||||
|
|||||||
Reference in New Issue
Block a user