2017-06-22 1 views
0

J'essaie de faire OpenVolumeMesh comme décrit dans https://www.graphics.rwth-aachen.de:9000/OpenVolumeMesh/OpenVolumeMesh. Je reçois une erreur:Cmake et chemins

Cadre de test Google introuvable.

J'ai effectivement téléchargé le cadre et suivi ce qui est chargé de: How to setup Google C++ Testing Framework (gtest) on Visual Studio 2005

et tout le bon déroulement.

a) À quel endroit cmake recherche-t-il gtest? b) Est-ce PATH? Parce que j'ai copié le dossier de google testing framework ici et encore cmake n'a rien trouvé.

Le findgoogletesting.cmake en OpenVolumeMeshis les éléments suivants:

if(GTEST_INCLUDE_DIRS AND GTEST_LIBRARIES AND GTEST_MAIN_LIBRARIES) 
    set(GTEST_FOUND true) 
else(GTEST_INCLUDE_DIRS AND GTEST_LIBRARIES AND GTEST_MAIN_LIBRARIES) 
    set(GTEST_PREFIX "" CACHE PATH "Installation prefix for Google Test") 
    if(GTEST_PREFIX) 
    find_path(_GTEST_INCLUDE_DIR "gtest/gtest.h" 
     PATHS "${GTEST_PREFIX}/include" 
     NO_DEFAULT_PATH) 
    find_library(_GTEST_LIBRARY gtest 
     PATHS "${GTEST_PREFIX}/lib" 
     NO_DEFAULT_PATH) 
    find_library(_GTEST_MAIN_LIBRARY gtest_main 
     PATHS "${GTEST_PREFIX}/lib" 
     NO_DEFAULT_PATH) 

    if (_GTEST_LIBRARY) 
     get_filename_component(_GTEST_LIBRARY_DIR ${_GTEST_LIBRARY} PATH CACHE) 
    endif() 
    else(GTEST_PREFIX) 
    find_path(_GTEST_INCLUDE_DIR "gtest/gtest.h" 
     PATHS 
     ~/sw/gtest-1.8.0/include 
     ~/sw/gtest-1.7.0/include 
     ~/sw/gtest/include  
     /ACG/acgdev/gcc-4.7-x86_64/gtest/include 
     /opt/local/include 
     /usr/local/include 
     /usr/include 
     "C:/libs/win32/gtest/include" 
     NO_DEFAULT_PATH) 
    find_library(_GTEST_LIBRARY gtest 
     PATHS 
     ~/sw/gtest-1.8.0/lib 
     ~/sw/gtest-1.7.0/lib 
     ~/sw/gtest/lib 
     /ACG/acgdev/gcc-4.7-x86_64/gtest/lib 
     /opt/local/lib 
     /usr/local/lib 
     /usr/lib 
     "C:/libs/win32/gtest/lib" 
     NO_DEFAULT_PATH) 
    find_library(_GTEST_MAIN_LIBRARY gtest_main 
     PATHS 
     ~/sw/gtest-1.8.0/lib 
     ~/sw/gtest-1.7.0/lib 
     ~/sw/gtest/lib 
     /ACG/acgdev/gcc-4.7-x86_64/gtest/lib 
     /opt/local/lib 
     /usr/local/lib 
     /usr/lib 
     "C:/libs/win32/gtest/lib" 
     NO_DEFAULT_PATH) 

    if (_GTEST_LIBRARY) 
     get_filename_component(_GTEST_LIBRARY_DIR ${_GTEST_LIBRARY} PATH CACHE) 
    endif() 

    endif(GTEST_PREFIX) 
    if(_GTEST_INCLUDE_DIR AND _GTEST_LIBRARY AND _GTEST_MAIN_LIBRARY) 
    set(GTEST_FOUND true) 
    set(GTEST_INCLUDE_DIRS ${_GTEST_INCLUDE_DIR} CACHE PATH 
     "Include directories for Google Test framework") 

    if (NOT WIN32) 
     set(GTEST_LIBRARIES ${_GTEST_LIBRARY} CACHE FILEPATH 
     "Libraries to link for Google Test framework") 
     set(GTEST_MAIN_LIBRARIES ${_GTEST_MAIN_LIBRARY} CACHE FILEPATH 
     "Libraries to link for Google Test automatic main() definition") 
    else() 
     set(GTEST_LIBRARIES "optimized;gtest;debug;gtestd" CACHE FILEPATH 
     "Libraries to link for Google Test framework") 
     set(GTEST_MAIN_LIBRARIES "optimized;gtest_main;debug;gtest_maind" CACHE FILEPATH 
     "Libraries to link for Google Test automatic main() definition") 
    endif() 

    # Macro required to use google test with vs2012 
    if (CMAKE_GENERATOR MATCHES "^Visual Studio 11.*" ) 
     add_definitions(-D_VARIADIC_MAX=10) 
    endif() 


    set(GTEST_LIBRARY_DIR ${_GTEST_LIBRARY_DIR} CACHE FILEPATH 
     "Library dir containing Google Test libraries") 
    mark_as_advanced(GTEST_INCLUDE_DIRS GTEST_LIBRARIES GTEST_MAIN_LIBRARIES GTEST_LIBRARY_DIR) 
    if(NOT GoogleTest_FIND_QUIETLY) 
     message(STATUS "Found Google Test: ${GTEST_LIBRARIES}") 
    endif(NOT GoogleTest_FIND_QUIETLY) 
    else(_GTEST_INCLUDE_DIR AND _GTEST_LIBRARY AND _GTEST_MAIN_LIBRARY) 
    if(GoogleTest_FIND_REQUIRED) 
     message(FATAL_ERROR "Could not find the Google Test framework") 
    endif(GoogleTest_FIND_REQUIRED) 
    endif(_GTEST_INCLUDE_DIR AND _GTEST_LIBRARY AND _GTEST_MAIN_LIBRARY) 
endif(GTEST_INCLUDE_DIRS AND GTEST_LIBRARIES AND GTEST_MAIN_LIBRARIES) 

Répondre

1

Le vous FindGoogleTest.cmake dit déjà la réponse: vous devez exécuter cmake avec le drapeau suivant ajouté:

cmake -D GTEST_PREFIX=<path/to/gtest> </path/to/OpenVolumeMesh/sources> 

Si vous utilisez le CMake Gui, vous devez cliquer sur 'Ajouter une entrée' et le spécifier ici.