-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDevNotes.txt
42 lines (32 loc) · 1.18 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
41
42
Development Structure
---------------------
The source folder structure is required by the solution & projects to be like
this:-
+-UTSvrBrowser
+-Lib
| +-Core
| +-MDBL
| +-NCL
| +-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/UTSvrBrowser.git Win32\UTSvrBrowser
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/NCL.git Win32\Lib\NCL
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\UTSvrBrowser\UTSvrBrowser.sln
There is also one for upgrading to a later version of Visual C++:-
C:\> Win32\Scripts\SetVars vc140
C:\> Win32\Scripts\Upgrade Win32\UTSvrBrowser\UTSvrBrowser.sln
Chris Oldwood
27th February 2016