Skip to content

Commit

Permalink
Merge branch 'Cufeed-erm' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
ermolaevv committed Mar 17, 2024
2 parents 987adec + 9712c9f commit 33b74e3
Show file tree
Hide file tree
Showing 40 changed files with 475 additions and 29,857 deletions.
16 changes: 14 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,20 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG ${CMAKE_RUNTIME_OUTPUT_DIRECTORY_RELEAS
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
enable_testing()

include_directories(${CMAKE_CURRENT_SOURCE_DIR}/gtest)
add_subdirectory(gtest)
include(FetchContent)
FetchContent_Declare(
googletest
# Specify the commit you depend on and update it regularly.
URL https://github.com/google/googletest/archive/5376968f6948923e2411081fd9372e71a59d8e77.zip
)
# For Windows: Prevent overriding the parent project's compiler/linker settings
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
FetchContent_MakeAvailable(googletest)
set_target_properties(gtest PROPERTIES FOLDER 3rdparty/${nameBaseProj})
set_target_properties(gtest_main PROPERTIES FOLDER 3rdparty/${nameBaseProj})
set_target_properties(gmock PROPERTIES FOLDER 3rdparty/${nameBaseProj})
set_target_properties(gmock_main PROPERTIES FOLDER 3rdparty/${nameBaseProj})

add_subdirectory(polinom)
add_subdirectory(postfix)
add_subdirectory(table)
Expand Down
13 changes: 0 additions & 13 deletions gtest/CMakeLists.txt

This file was deleted.

Loading

0 comments on commit 33b74e3

Please sign in to comment.