Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ADIOS2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Podhorszki, Norbert
ADIOS2
Commits
80417507
"ReadMe.md" did not exist on "7058ac92498f907e0ae517829a7b1ecb30ada64a"
Commit
80417507
authored
7 years ago
by
Atkins, Charles Vernon
Browse files
Options
Downloads
Patches
Plain Diff
Fix pthread linkage for googletest
parent
3bac4a3b
No related branches found
No related tags found
1 merge request
!95
Add read validation to engine tests
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
thirdparty/GTest/CMakeLists.txt
+0
-5
0 additions, 5 deletions
thirdparty/GTest/CMakeLists.txt
thirdparty/GTest/googletest/googletest/CMakeLists.txt
+3
-0
3 additions, 0 deletions
thirdparty/GTest/googletest/googletest/CMakeLists.txt
with
3 additions
and
5 deletions
thirdparty/GTest/CMakeLists.txt
+
0
−
5
View file @
80417507
...
...
@@ -2,8 +2,3 @@ set(BUILD_GTEST ON)
set
(
BUILD_GMOCK OFF
)
add_subdirectory
(
googletest
)
# Fix missing usage requirements
target_include_directories
(
gtest
INTERFACE
${
CMAKE_CURRENT_SOURCE_DIR
}
/googletest/googletest/include
)
This diff is collapsed.
Click to expand it.
thirdparty/GTest/googletest/googletest/CMakeLists.txt
+
3
−
0
View file @
80417507
...
...
@@ -96,6 +96,9 @@ cxx_library(gtest "${cxx_strict}" src/gtest-all.cc)
cxx_library
(
gtest_main
"
${
cxx_strict
}
"
src/gtest_main.cc
)
target_link_libraries
(
gtest_main gtest
)
find_package
(
Threads REQUIRED
)
target_link_libraries
(
gtest
${
CMAKE_THREAD_LIBS_INIT
}
)
# If the CMake version supports it, attach header directory information
# to the targets for when we are part of a parent build (ie being pulled
# in via add_subdirectory() rather than being a standalone build).
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment