File: INSTALL

package info (click to toggle)
simka 1.5.3-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,200 kB
  • sloc: cpp: 5,321; python: 672; sh: 386; makefile: 26
file content (22 lines) | stat: -rwxr-xr-x 389 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# CMake is required to compile simka (http://www.cmake.org/cmake/resources/software.html)
#
# you can install simka by executing this file:  sh INSTALL
#

# Prepare GATB sub-module
git submodule init
git submodule update

# Prepare directories:
rm -rf build
mkdir  build

# Go in the 'build' directory
cd build

# Prepare the makefile
cmake ..

# Run the newly created makefile:
make -j8