forked from cellmlapi/cellml-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
30 lines (25 loc) · 739 Bytes
/
INSTALL
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
Installation Instructions
*************************
You need CMake to build the CellML API.
On POSIX platforms, you can run:
cmake -LA .
to see the options available to you, or if you have ccmake installed and
prefer a curses-based UI to select options and generate makefiles:
ccmake .
After generating makefiles with CMake, you can run:
make all
make test
make install
to build and install the CellML API.
On Windows (when building with MSVC2010), when running CMake, add
-G "NMake Makefiles" to the CMake command line,
and then run:
nmake all
nmake test
nmake install
To build using MSYS and MinGW on Windows, add
-G "MSYS Makefiles" to the CMake command line,
and then run
make all
make test
make install