Commit 3a528d4c authored by Steffen Möller's avatar Steffen Möller
Browse files

New upstream version 0.9.9.7+soedinglab+git20180802

parent 353cbc5c
Loading
Loading
Loading
Loading

.dockerignore

0 → 100644
+7 −0
Original line number Diff line number Diff line
.git/
.idea/
bin/
build/
test/
cmake-build-debug/
cmake-build-release/

.gitignore

0 → 100644
+26 −0
Original line number Diff line number Diff line
# Object files
*.o
*.ko
*.obj
*.elf

# Libraries
*.lib
*.a

# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib

# Executables
*.exe
*.out
*.app
*.i*86
*.x86_64
*.hex

# Build directory
/build

.hgignore

deleted100644 → 0
+0 −5
Original line number Diff line number Diff line
.*\.o
test_big
bin
lib
include

.travis.yml

0 → 100644
+81 −0
Original line number Diff line number Diff line
# Ubuntu 14.04 Trusty support
sudo: required
dist: trusty

addons:
  apt:
    packages:
    - cmake

before_install:
- git submodule update --init --recursive

script:
- mkdir build
- cd build
- cmake .. && make
# - CTEST_OUTPUT_ON_FAILURE=TRUE make test


matrix:
  include:
    - compiler: gcc
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-4.9
            - mpi-default-dev
      env: CXX=g++-4.9
    - compiler: gcc
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-5
            - mpi-default-dev
      env: CXX=g++-5
    - compiler: gcc
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
          packages:
            - g++-6
            - mpi-default-dev
      env: CXX=g++-6
    - compiler: clang
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-precise-3.6
          packages:
            - clang-3.6
            - mpi-default-dev
      env: CXX=clang++-3.6
    - compiler: clang
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-precise-3.7
          packages:
            - clang-3.7
            - mpi-default-dev
      env: CXX=clang++-3.7
    - compiler: clang
      addons:
        apt:
          sources:
            - ubuntu-toolchain-r-test
            - llvm-toolchain-precise-3.8
          packages:
            - clang-3.8
            - mpi-default-dev
      env: CXX=clang++-3.8


CMakeLists.txt

0 → 100644
+8 −0
Original line number Diff line number Diff line
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
SET(HAVE_MPI 1 CACHE BOOL "Have MPI")

project(ffindex C)
include_directories(src)
include_directories(src/ext)
add_subdirectory(src)
Loading