20 lines
700 B
CMake
20 lines
700 B
CMake
|
|
project(Google_Tests)
|
||
|
|
|
||
|
|
set(CMAKE_CXX_STANDARD 20)
|
||
|
|
|
||
|
|
# 'lib' is the folder with Google Test sources
|
||
|
|
add_subdirectory(lib)
|
||
|
|
include_directories(${gtest_SOURCE_DIR}/include ${gtest_SOURCE_DIR})
|
||
|
|
|
||
|
|
# 'Google_Tests_run' is the target name
|
||
|
|
# 'test1.cpp test2.cpp' are source files with tests
|
||
|
|
add_executable(Google_Tests_run test1.cpp)
|
||
|
|
|
||
|
|
target_link_libraries(Google_Tests_run pasada)
|
||
|
|
#target_include_directories(Google_Tests_run PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/pasada-lib/include")
|
||
|
|
|
||
|
|
target_link_libraries(Google_Tests_run gtest gtest_main)
|
||
|
|
#target_link_libraries(Google_Tests_run PRIVATE Pasada_Lib)
|
||
|
|
|
||
|
|
target_include_directories(Google_Tests_run PRIVATE "${CMAKE_CURRENT_SOURCE_DIR}/../pasada-lib/include")
|