Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mpp
MLUQ
Commits
c5ff3a1b
Commit
c5ff3a1b
authored
Jul 26, 2019
by
niklas.baumgarten
Browse files
added googletest
parent
3d5aefa2
Changes
4
Show whitespace changes
Inline
Side-by-side
.gitignore
View file @
c5ff3a1b
build/
.idea/
googletest/
sprng5/
.gitmodules
View file @
c5ff3a1b
[submodule "mpp"]
path = mpp
url = git@git.scc.kit.edu:yq8188/mpp.git
[submodule "googletest"]
path = googletest
url = https://github.com/google/googletest.git
CMakeLists.txt
View file @
c5ff3a1b
#
# Loads static libraries mpp_src and lib_ps
#
cmake_minimum_required
(
VERSION 3.5.1
)
project
(
mpp_mlmc
)
#---------------------------------------------------------------------------------------#
#
# Google test (Placed here to not compile it with mpiCC)
#
add_subdirectory(googletest)
#
include_directories(${PROJECT_BINARY_DIR}/googletest/googletest/include)
#
include_directories(${PROJECT_BINARY_DIR}/googlemock/googletest/include)
#
set(GTEST_LIB gtest gtest_main)
# Google test (Placed here to not compile it with mpiCC)
add_subdirectory
(
googletest
)
include_directories
(
${
PROJECT_BINARY_DIR
}
/googletest/googletest/include
)
include_directories
(
${
PROJECT_BINARY_DIR
}
/googlemock/googletest/include
)
set
(
GTEST_LIB gtest gtest_main
)
#---------------------------------------------------------------------------------------#
# MPI
...
...
googletest
@
2134e3fd
Subproject commit 2134e3fd857d952e03ce76064fad5ac6e9036104
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment