genome / joinx

a tool for processing .bed and .vcf files
21 stars 11 forks source link

joinx build on Centos 6.4 failed #5

Closed sandoro closed 10 years ago

sandoro commented 10 years ago

A build of joinx on Centos6.4 with the newest cmake-2.8.12.2 shows the following errors:

CMake Error at CMakeLists.txt:17 (include) include could not find load file:

 TestHelper

CMake Error at CMakeLists.txt:18 (include) include could not find load file:

 VersionHelper

CMake Error at CMakeLists.txt:19 (include) include could not find load file:

 ProjectHelper

CMake Error at CMakeLists.txt:102 (add_projects): Unknown CMake command "add_projects".

Is there something I'm missing?

Sanford M. Orlow, PhD Computer Engineer National Institutes of Health CIT/DCSS/SCB 12 South Dr. 12/2208 , Bethesda, MD 20892-5680 PHONE 301.496.5362 EMAIL sandor@mail.nih.gov

tabbott commented 10 years ago

The problem is that the build-common submodule is missing. This happens when the repository is cloned without the --recursive option. To fix the problem, you can run:

git submodule update --init

from the root level of the repository, or re-clone with

git clone --recursive https://github.com/genome/joinx.git