-
Notifications
You must be signed in to change notification settings - Fork 8
/
INSTALL.win32
36 lines (29 loc) · 1.45 KB
/
INSTALL.win32
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
Configuration
-------------
Before you can compile anything, create a file called 'config.bat' in the
source subdirectory ('src', that is). It's best to copy the template below
out of this file and modify it to fit your setup.
In most cases, you just want to change the installation target directories
"bindir", "includedir" and "libdir" to your standard binary, header and
library directories. If you want to install the library manually, you can
just leave the file blank. This will prevent any automatic installations.
If you don't have any standard directories yet, you have to create them
first. It's best to put them somewhere under your 'My Documents' folder, if
you have one and name them appropriately. For example, a good fit would be
'include' for your headers, 'lib' for your libraries and 'bin' for your
executables. But any other names are just as well, too.
Remember to tell MSVC about your new directories. This is done through the
"Tools->Options..." menu. There, select the "Directories" tab and fill in
the directory names, using the appropriate listboxes.
Setup
-----
Start MSVC and create a new workspace. Then load the project file
libbinio.dsp from the source subdirecotry into it and you're finished.
config.bat Template
-------------------
rem Standard libraries subdirectory
set libdir=C:\My Documents\lib
rem Standard headers subdirectory
set includedir=C:\My Documents\include
rem Standard executables subdirectory
set bindir=C:\My Documents\bin