-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmycpp.sln
120 lines (120 loc) · 6.79 KB
/
mycpp.sln
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.23107.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "DBAccess", "DBAccess\DBAccess.vcxproj", "{3B154330-8469-4F7B-8126-2C01824AD637}"
EndProject
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Test", "Test\Test.vcxproj", "{58904325-9FE0-4C9D-905C-2ACC570C238A}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Common", "Common", "{B20D1884-0253-4B57-A03E-A24BBB153BE3}"
ProjectSection(SolutionItems) = preProject
Common\Encoding.hpp = Common\Encoding.hpp
Common\Meta.hpp = Common\Meta.hpp
Common\MSWinApi.hpp = Common\MSWinApi.hpp
common\mydefs.h = common\mydefs.h
common\mytypes.h = common\mytypes.h
Common\noncopyable.h = Common\noncopyable.h
Common\Sigleton_c11.hpp = Common\Sigleton_c11.hpp
Common\Singleton.hpp = Common\Singleton.hpp
Common\Singleton_boost.hpp = Common\Singleton_boost.hpp
common\Utils.hpp = common\Utils.hpp
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Mutex", "Mutex", "{815613B9-4C45-4617-A9E7-EA6417272956}"
ProjectSection(SolutionItems) = preProject
Common\Mutex\MyCond.hpp = Common\Mutex\MyCond.hpp
Common\Mutex\MyMutex.hpp = Common\Mutex\MyMutex.hpp
Common\Mutex\MyMutexRW.hpp = Common\Mutex\MyMutexRW.hpp
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "String", "String", "{BA11F45C-A975-4248-9504-E0A8CEDC0FB7}"
ProjectSection(SolutionItems) = preProject
Common\string\StrUtil.hpp = Common\string\StrUtil.hpp
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Time", "Time", "{326A7DA0-288B-4001-927C-374C26FE9874}"
ProjectSection(SolutionItems) = preProject
Common\Time\DateTime.hpp = Common\Time\DateTime.hpp
Common\Time\TimeMeter.hpp = Common\Time\TimeMeter.hpp
Common\Time\Timer.hpp = Common\Time\Timer.hpp
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "impl", "impl", "{C3BA3409-3D69-429A-B60B-B23B0312916D}"
ProjectSection(SolutionItems) = preProject
Common\Time\impl\TimeMeter.ipp = Common\Time\impl\TimeMeter.ipp
Common\Time\impl\Timer.ipp = Common\Time\impl\Timer.ipp
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Thread", "Thread", "{4DEA069D-EA25-45B2-A3D4-5066C1421CD4}"
ProjectSection(SolutionItems) = preProject
Common\Thread\Thread.hpp = Common\Thread\Thread.hpp
Common\Thread\ThreadPool.hpp = Common\Thread\ThreadPool.hpp
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "impl", "impl", "{C78E08CA-9FCF-4735-B2C2-0A09C3DC1AFB}"
ProjectSection(SolutionItems) = preProject
Common\Thread\impl\Thread.ipp = Common\Thread\impl\Thread.ipp
Common\Thread\impl\ThreadPool.ipp = Common\Thread\impl\ThreadPool.ipp
EndProjectSection
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug_Static|Any CPU = Debug_Static|Any CPU
Debug_Static|Win32 = Debug_Static|Win32
Debug_Static|x64 = Debug_Static|x64
Debug|Any CPU = Debug|Any CPU
Debug|Win32 = Debug|Win32
Debug|x64 = Debug|x64
Release_Static|Any CPU = Release_Static|Any CPU
Release_Static|Win32 = Release_Static|Win32
Release_Static|x64 = Release_Static|x64
Release|Any CPU = Release|Any CPU
Release|Win32 = Release|Win32
Release|x64 = Release|x64
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug_Static|Any CPU.ActiveCfg = Debug_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug_Static|Win32.ActiveCfg = Debug_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug_Static|Win32.Build.0 = Debug_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug_Static|x64.ActiveCfg = Debug_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug|Any CPU.ActiveCfg = Debug|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug|Win32.ActiveCfg = Debug|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug|Win32.Build.0 = Debug|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Debug|x64.ActiveCfg = Debug|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release_Static|Any CPU.ActiveCfg = Release_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release_Static|Win32.ActiveCfg = Release_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release_Static|Win32.Build.0 = Release_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release_Static|x64.ActiveCfg = Release_Static|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release|Any CPU.ActiveCfg = Release|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release|Win32.ActiveCfg = Release|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release|Win32.Build.0 = Release|Win32
{3B154330-8469-4F7B-8126-2C01824AD637}.Release|x64.ActiveCfg = Release|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug_Static|Any CPU.ActiveCfg = Debug_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug_Static|Win32.ActiveCfg = Debug_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug_Static|Win32.Build.0 = Debug_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug_Static|x64.ActiveCfg = Debug_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug|Any CPU.ActiveCfg = Debug|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug|Win32.ActiveCfg = Debug|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug|Win32.Build.0 = Debug|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Debug|x64.ActiveCfg = Debug|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release_Static|Any CPU.ActiveCfg = Release_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release_Static|Win32.ActiveCfg = Release_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release_Static|x64.ActiveCfg = Release_Static|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release|Any CPU.ActiveCfg = Release|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release|Win32.ActiveCfg = Release|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release|Win32.Build.0 = Release|Win32
{58904325-9FE0-4C9D-905C-2ACC570C238A}.Release|x64.ActiveCfg = Release|Win32
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{815613B9-4C45-4617-A9E7-EA6417272956} = {B20D1884-0253-4B57-A03E-A24BBB153BE3}
{BA11F45C-A975-4248-9504-E0A8CEDC0FB7} = {B20D1884-0253-4B57-A03E-A24BBB153BE3}
{326A7DA0-288B-4001-927C-374C26FE9874} = {B20D1884-0253-4B57-A03E-A24BBB153BE3}
{C3BA3409-3D69-429A-B60B-B23B0312916D} = {326A7DA0-288B-4001-927C-374C26FE9874}
{4DEA069D-EA25-45B2-A3D4-5066C1421CD4} = {B20D1884-0253-4B57-A03E-A24BBB153BE3}
{C78E08CA-9FCF-4735-B2C2-0A09C3DC1AFB} = {4DEA069D-EA25-45B2-A3D4-5066C1421CD4}
EndGlobalSection
EndGlobal