]> 4ch.mooo.com Git - 16.git/blob - 16/adplug/libbinio/INSTALL.win32
wwww~
[16.git] / 16 / adplug / libbinio / INSTALL.win32
1 Configuration
2 -------------
3 Before you can compile anything, create a file called 'config.bat' in the
4 source subdirectory ('src', that is). It's best to copy the template below
5 out of this file and modify it to fit your setup.
6
7 In most cases, you just want to change the installation target directories
8 "bindir", "includedir" and "libdir" to your standard binary, header and
9 library directories. If you want to install the library manually, you can
10 just leave the file blank. This will prevent any automatic installations.
11
12 If you don't have any standard directories yet, you have to create them
13 first. It's best to put them somewhere under your 'My Documents' folder, if
14 you have one and name them appropriately. For example, a good fit would be
15 'include' for your headers, 'lib' for your libraries and 'bin' for your
16 executables. But any other names are just as well, too.
17
18 Remember to tell MSVC about your new directories. This is done through the
19 "Tools->Options..." menu. There, select the "Directories" tab and fill in
20 the directory names, using the appropriate listboxes.
21
22 Setup
23 -----
24 Start MSVC and create a new workspace. Then load the project file
25 libbinio.dsp from the source subdirecotry into it and you're finished.
26
27 config.bat Template
28 -------------------
29 rem Standard libraries subdirectory
30 set libdir=C:\My Documents\lib
31
32 rem Standard headers subdirectory
33 set includedir=C:\My Documents\include
34
35 rem Standard executables subdirectory
36 set bindir=C:\My Documents\bin