2016-07-07 51 views
0

cmakeが必要なグロマックをインストールしようとしていました。 CMakeのインストールは完了しており、問題は表示されていません。私は...次のエラーがこの問題を解決するために私を助けてください...表示され、このコマンドを実行するためにCMakeLists.txtでCMakeエラーが発生しました:56(インクルード):インクルードファイルが見つかりません:gmxVersionInfo

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

    gmxBuildTreeInfo 


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

    gmxVersionInfo 


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

    gmxBuildTypeReference 


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

    gmxBuildTypeProfile 


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

    gmxBuildTypeTSAN 


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

    gmxBuildTypeASAN 


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

    gmxBuildTypeMSAN 


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

    gmxBuildTypeReleaseWithAssert 


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

    gmxCPackUtilities 


CMake Error at CMakeLists.txt:103 (gmx_cpack_init): 
    Unknown CMake command "gmx_cpack_init". 


-- Configuring incomplete, errors occurred! 
See also "/home/prachi/software/gromacs/gromacs-2016-beta2/build/CMakeFiles/CMakeOutput.log". 
+0

ソースコードはどこにありますか?私はちょうど最新のgit HEADで試してみました。 –

+0

おそらくコードの一部が欠落しています。正しくリコールした場合、インストール中にcmakeスクリプトがコードをダウンロードするためのフラグがあります。 – nikaza

+0

@nikazaエラーを生成するすべてのファイルは、ここに表示されているように、 '' /cmake'''フォルダ内になければなりませんhttp://repo.or.cz/gromacs.git/tree/HEAD:/cmake 。だからダウンロードするものはありません。ちょうど '' 'git clone git://git.gromacs.org/gromacs.git; cdグロミクス; mkdirビルド; cdビルド; cmake .. -DGMX_BUILD_OWN_FFTW = ON'''が動作します。 –

答えて

0

cmake .. -DGMX_BUILD_OWN_FFTW=ON 

をしようとしたときしかし、あなたは、あなたが考える場所からコンパイルされていませんあります。あなたの所見は最も一致していますmkdir build; cd build; mkdir build; cd build; cmake ..

関連する問題