私はLinuxのClionでGoogleテストをセットアップしようとして何時間もオンラインで座っていましたが、何も見つかりませんでした。
誰かがこれを設定してくれますか?
cd ~/ClionProjects
mkdir .repo
cd .repo
git clone https://github.com/Crascit/DownloadProject.git
cmake_minimum_required(VERSION 3.3)
project(MyProjectName)
add_subdirectory(src)
add_subdirectory(test)
#set(core_SRCS ADD ALL SOURCE FILES HERE)
add_library(core ${core_SRCS})
add_executable(exe main.cpp)
target_link_libraries(exe core)
[テストプロジェクト内に含めることができるようにライブラリをコンパイルします]
cmake_minimum_required(VERSION 3.3)
set(REPO ~/ClionProjects/.repo)
project(Test)
project(Example)
include(CTest)
enable_testing()
#set(gtest_disable_pthreads on) #needed in MinGW
include(${REPO}/DownloadProject/DownloadProject.cmake)
download_project(
PROJ googletest
GIT_REPOSITORY https://github.com/google/googletest.git
GIT_TAG master
UPDATE_DISCONNECTED 1
)
add_subdirectory(${googletest_SOURCE_DIR} ${googletest_BINARY_DIR} EXCLUDE_FROM_ALL)
#set(test_SRCS ADD ALL TEST SOURCE FILES HERE)
add_executable(runUnitTests gtest.cpp ${test_SRCS})
target_link_libraries(runUnitTests gtest gmock core)
#add_test(runUnitTests runUnitTests) #included in all tutorials but I don't know what it actually does.
#include "gtest/gtest.h"
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
注:gitプロジェクトで作業する場合は、DownloadProject.cmake
およびDownloadProjects.CmakeLists.cmake.in
ファイルはプロジェクト内にあります。
1。 google-test C++テストフレームワークのGitクローン
From https://github.com/google/googletest.git
2. google-testディレクトリを含める
#Add the google test subdirectory
add_subdirectory(PATH_TO_GOOGLETEST)
#include googletest/include dir
include_directories(PATH_TO_GOOGLETEST/googletest/include)
#include the googlemock/include dir
include_directories(PATH_TO_GOOGLETEST/googlemock/include)
3。実行可能ファイルをgoogle-testにリンクします(これは実行可能ファイルを作成した後です)
#Define your executable
add_executable(EXECUTABLE_NAME ${SOURCE_FILES})
#Link with GoogleTest
target_link_libraries(EXECUTABLE_NAME gtest gtest_main)
#Link with GoogleMock
target_link_libraries(EXECUTABLE_NAME gmock gmock_main)
GoogleTestを使用する小さなサンプルC++ 11プロジェクト パッケージ化されたCMake機能のみに依存します(主に- ExternalProject
module および内部CLionと* nixコマンドラインの両方から機能します。
このバージョンでは、「ベンダー」依存関係が表示されます。必要に応じて、プロジェクトの外部に配置できます。すべての依存ビルドのソースコードとビルドアーティファクトはプロジェクトに含まれており、ビルドホストを汚染しません。ただし、ExternalProject
モジュールは、リモートリポジトリから特定のバージョンをダウンロードするように調整するのはかなり簡単です。
READMEで説明が必要な場合は教えてください。