-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathDevNotes.txt
40 lines (30 loc) · 1.01 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:-
+-<application>
| +-<tests>
+-Lib
| +-Core
| +-WCL
| +-WMI
| | +-Test
+-Scripts
The following commands will create that structure by cloning the various
application and library repositories:-
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/WMI.git Win32\Lib\WMI
<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\Lib\WMI\Test\Test.sln
There is also one for upgrading to a later version of Visual C++:-
C:\> Win32\Scripts\SetVars vc140
C:\> Win32\Scripts\Upgrade Win32\Lib\WMI\Test\Test.sln
Chris Oldwood
22nd October 2013