-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDevNotes.txt
40 lines (30 loc) · 1.09 KB
/
DevNotes.txt
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:-
+-UTCacheMgr
+-Lib
| +-Core
| +-MDBL
| +-WCL
+-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/UTCacheMgr.git Win32\UTCacheMgr
C:\> mkdir Win32\Lib
C:\> git clone https://github.com/chrisoldwood/Core.git Win32\Lib\Core
C:\> git clone https://github.com/chrisoldwood/MDBL.git Win32\Lib\MDBL
C:\> git clone https://github.com/chrisoldwood/WCL.git Win32\Lib\WCL
<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\UTCacheMgr\UTCacheMgr.sln
There is also one for upgrading to a later version of Visual C++:-
C:\> Win32\Scripts\SetVars vc140
C:\> Win32\Scripts\Upgrade Win32\UTCacheMgr\UTCacheMgr.sln
Chris Oldwood
27th February 2016