-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadme.txt
executable file
·68 lines (52 loc) · 2.11 KB
/
readme.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
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
_ _
| |__ __ _ ___| | ___ _ _ __ _____ _____
| '_ \ / _` |/ __| |/ / | | | '_ \ / _ \ \/ / _ \
| |_) | (_| | (__| <| |_| | |_) | __/> < __/
|_.__/ \__,_|\___|_|\_\\__,_| .__(_)___/_/\_\___|
|_|
Tiny superpowerful win32 backup program
==Windows==
http://windowsupdate.microsoft.com
Windows XP SP3 and Windows Update
Visual Studio 2008 and SP1
http://www.microsoft.com/downloads/details.aspx?FamilyID=c17ba869-9671-4330-a63e-1fd44e0e2505&displaylang=en
Windows SDK Version 7, published July 24 2009
==Code==
git clone git@github.com:zootella/backup.git
==Or, make a new project==
File, New, Project
Project types: Visual C++, Win32, Win32 Project
Name: backup
Location: C:\Documents
Uncheck Create directory for solution
OK
Application Settings, check Empty Project
Finish
Place files in the backup folder and then drag them into Visual Studio
*.h
*.cpp
*.ico
backup.rc
backup.exe.manifest
==Or, start resources from scratch==
File, Add New Item
choose Resource File (.rc), enter name, Open
==Properties==
Project, Properties, Configuration Properties, Configuration: Debug | Release
General, Use of ATL: Not Using ATL
General, Character Set: Use Unicode Character Set
General, Whole Program Optimization: No Whole Program Optimization | Use Link Time Code Generation
C/C++, Optimization, Optimization: Disabled (/Od) | Minimize Size (/O1)
C/C++, Code Generation, Enable Minimal Rebuild: Yes (/Gm) | No
C/C++, Code Generation, Enable C++ Exceptions: Yes (/EHsc)
C/C++, Code Generation, Basic Runtime Checks: Both | Default
C/C++, Code Generation, Runtime Library: Multi-threaded Debug (/MTd) | Multi-threaded (/MT)
C/C++, Precompiled Headers, Create/Use Precompiled Header: Not Using Precompiled Headers
Linker, Manifest File, Generate Manifest: No
Manifest Tool, Input and Output, Embed Manifest: No
Project, Properties, Configuration Properties, C/C++, Preprocessor, Preprocessor Definitions, Debug | Release
WIN32
_DEBUG | NDEBUG
_WINDOWS
_WIN32_WINNT=0x0501
==The end==