-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDevNotes.txt
More file actions
40 lines (30 loc) · 1.11 KB
/
DevNotes.txt
File metadata and controls
40 lines (30 loc) · 1.11 KB
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
Development Structure
---------------------
The source folder structure is required by the solution & projects to be like
this:-
+-VCProjCompare
+-Lib
| +-Core
| +-WCL
| +-XML
+-Scripts
The following commands will create that structure by cloning the various
application and library repositories:-
C:\> mkdir Win32
C:\> git clone https://github.com/chrisoldwood/VCProjCompare.git Win32\VCProjCompare
C:\> mkdir Win32\Lib
C:\> git clone https://github.com/chrisoldwood/Core.git Win32\Lib\Core
C:\> git clone https://github.com/chrisoldwood/WCL.git Win32\Lib\WCL
C:\> git clone https://github.com/chrisoldwood/XML.git Win32\Lib\XML
<optional>
C:\> git clone https://github.com/chrisoldwood/Scripts.git Win32\Scripts
Command Line Builds
-------------------
Included in the scripts folder is one for building via the command line:-
C:\> Win32\Scripts\SetVars vc90
C:\> Win32\Scripts\Build debug Win32\VCProjCompare\VCProjCompare.sln
There is also one for upgrading to a later version of Visual C++:-
C:\> Win32\Scripts\SetVars vc140
C:\> Win32\Scripts\Upgrade Win32\VCProjCompare\VCProjCompare.sln
Chris Oldwood
27th June 2014