-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable tools and tests, update GoogleTest
- Loading branch information
1 parent
772afa5
commit 6b51904
Showing
7 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ endfunction() | |
|
||
add_app(KaMinPar kaminpar.cc) | ||
|
||
add_subdirectory(tools) | ||
#add_subdirectory(tools) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# taken from http://johnlamp.net/cmake-tutorial-5-functionally-improved-testing.html | ||
function(add_gmock_test target) | ||
add_executable(${target} ${ARGN}) | ||
target_link_libraries(${target} gtest gtest_main gmock_main ${CMAKE_THREAD_LIBS_INIT} kaminpar) | ||
target_link_libraries(${target} gtest gtest_main gmock_main ${CMAKE_THREAD_LIBS_INIT} kaminpar_impl) | ||
|
||
set_property(TARGET ${target} PROPERTY CXX_STANDARD 20) | ||
set_property(TARGET ${target} PROPERTY CXX_STANDARD_REQUIRED ON) | ||
|
||
add_test(${target} ${target}) | ||
endfunction() | ||
endfunction() |
Submodule googletest
updated
231 files