-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55c9b15
commit 70d7e49
Showing
15 changed files
with
106 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
[submodule "thirdparty/asio"] | ||
path = thirdparty/asio | ||
[submodule "thirdparty/asio/asio"] | ||
path = thirdparty/asio/asio | ||
url = https://github.com/chriskohlhoff/asio.git | ||
[submodule "thirdparty/recycle"] | ||
path = thirdparty/recycle | ||
[submodule "thirdparty/recycle/recycle"] | ||
path = thirdparty/recycle/recycle | ||
url = https://github.com/steinwurf/recycle.git | ||
[submodule "thirdparty/gtest/googletest"] | ||
path = thirdparty/gtest/googletest | ||
url = https://github.com/google/googletest.git |
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
Submodule asio
deleted from
dc6737
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_LIST_DIR}/Module") |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
set(GTest_FOUND TRUE CACHE BOOL "Found Google Test" FORCE) |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Googletest automatically forces MT instead of MD if we do not set this option. | ||
if(MSVC) | ||
set(gtest_force_shared_crt ON CACHE BOOL "My option" FORCE) | ||
set(BUILD_GMOCK OFF CACHE BOOL "My option" FORCE) | ||
set(INSTALL_GTEST OFF CACHE BOOL "My option" FORCE) | ||
endif() | ||
|
||
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/googletest" EXCLUDE_FROM_ALL) | ||
|
||
if(NOT TARGET GTest::gtest) | ||
add_library(GTest::gtest ALIAS gtest) | ||
endif() | ||
|
||
if(NOT TARGET GTest::gtest_main) | ||
add_library(GTest::gtest_main ALIAS gtest_main) | ||
endif() | ||
|
||
# Prepend googletest-module/FindGTest.cmake to Module Path | ||
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_LIST_DIR}/Module") |
Submodule googletest
added at
d14403
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
set(recycle_FOUND TRUE CACHE BOOL "Found steinwurf::recycle" FORCE) |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
add_subdirectory("${CMAKE_CURRENT_LIST_DIR}/recycle" EXCLUDE_FROM_ALL) | ||
add_library(steinwurf::recycle ALIAS recycle) | ||
|
||
# Prepend asio-module/Findrecycle.cmake to the module path | ||
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_CURRENT_LIST_DIR}/Module") |
Submodule recycle
updated
from 000000 to c54257
2 changes: 1 addition & 1 deletion
2
thirdparty/modules/Findtcp_pubsub.cmake → ...ty/tcp_pubsub/Module/Findtcp_pubsub.cmake
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,2 +1,2 @@ | ||
# Stub find script for in-source build of samples | ||
set(tcp_pubsub_FOUND True) | ||
set(tcp_pubsub_FOUND True) |