source: libmikmod/vendor/current/macosx/INSTALL@ 1454

Last change on this file since 1454 was 1454, checked in by valerius, 9 years ago

libmikmod: Import version 3.3.8 from vendor.

Source URL: https://sourceforge.net/projects/mikmod/files/libmikmod/3.3.8/libmikmod-3.3.8.tar.gz/download

File size: 1.7 KB
Line 
1>> BUILD INSTRUCTIONS FOR libmikmod FOR MAC OS X
2------------------------------------------------
3
4You can always use the UNIX commandline tools
5instead of the IDE projects in this directory.
6
7Go to the top level and follow the INSTALL there...
8(Hint: "./configure && make && sudo make install")
9
10In that case your files will end up under /usr/local.
11The IDE stuff will end up under a "build" directory.
12
13You can also play with the standalone Makefile.darwin
14file here in this directory, in order to build from
15the command line. (Hint: "gmake -f Makefile.darwin" )
16
17
18XCode on Mac OS X 10.3 and newer:
19-------------
20
211) You should be using Xcode 2.x, or up.
22
232) Open "libmikmod.xcodeproj" with the Xcode app.
24
25
26Build products
27--------------
28
29The projects will build a static library with header:
30- mikmod.h
31- libmikmod.a
32And they will also build a dynamic framework bundle:
33- mikmod.framework
34
35These build products are normally found in the "build"
36folder, unless you have changed your IDE settings...
37
38
39Using the library
40----------------
41
42To use the library, either copy "mikmod.framework"
43bundle to somewhere in your framework search path,
44(such as ~/Library/Frameworks or /Library/Frameworks)
45
46Source code: #include <mikmod/mikmod.h>
47
48Linker flags: -framework mikmod
49
50
51Or copy the "mikmod.h" header and "libmikmod.a" library
52to somewhere in the include and library search paths.
53(such as /usr/local/include and /usr/local/lib)
54
55Source code: #include "mikmod.h"
56
57Linker flags: -lmikmod -framework CoreAudio
58
59
60The HTML documentation is found in the "docs" folder,
61located in the top level of the libmikmod distribution.
62
63
64
65Enjoy!
66
67Anders F Bjšrklund <afb@algonet.se>
68http://www.algonet.se/~afb/mikmod
Note: See TracBrowser for help on using the repository browser.