Projemi google C++ test çerçevesiyle bağlamaya çalışıyorum. Mac OS X El Capitan kullanıyorum ve test kütüphanesini varsayılan yola kurdum. Google Test kütüphanesi CLion projesine nasıl bağlanır (Mac OS X El Capitan)
lib
/usr/local/lib/libgtest_main.a
/usr/local/lib/libgtest.a
include
:
/usr/local/include/gtest
Ben yeni CLION (2016/01/01) oluşturulan bir bu lib içermelidir
CMakeList.txt
olduğunu tahmin ediyorlar.
cmake_minimum_required(VERSION 3.5)
project(GoogleTest)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
set(SOURCE_FILES main.cpp)
add_executable(GoogleTest ${SOURCE_FILES})
target_link_libraries(GoogleTest gtest gtest_main)
Bu
sonucudur:Scanning dependencies of target GoogleTest
[ 50%] Building CXX object CMakeFiles/GoogleTest.dir/main.cpp.o
[100%] Linking CXX executable GoogleTest
ld: library not found for -lgtest
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[2]: *** [GoogleTest] Error 1
make[1]: *** [CMakeFiles/GoogleTest.dir/all] Error 2
make: *** [all] Error 2
Bunu nasıl düzeltebilirim? Şimdiden teşekkürler