-
Notifications
You must be signed in to change notification settings - Fork 74
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
Showing
30 changed files
with
145 additions
and
4 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
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,34 @@ | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/align) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/assert) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/config) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/container) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/container_hash) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/core) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/describe) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/detail) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/format) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/integer) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/interprocess) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/intrusive) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/io) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/move) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/mp11) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/optional) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/predef) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/preprocessor) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/smart_ptr) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/static_assert) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/throw_exception) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/type_traits) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/unordered) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/utility) | ||
add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/winapi) | ||
|
||
add_library(umd_boost SHARED ${CMAKE_CURRENT_SOURCE_DIR}/dummy.cpp) | ||
target_link_libraries(umd_boost PUBLIC boost_interprocess) | ||
set_target_properties(umd_boost PROPERTIES | ||
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib | ||
) | ||
set_target_properties(boost_container PROPERTIES | ||
LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/lib | ||
) |
Submodule container_hash
added at
48a306
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,3 @@ | ||
// SPDX-FileCopyrightText: © 2023 Tenstorrent Inc. | ||
// | ||
// SPDX-License-Identifier: Apache-2.0 |
Submodule interprocess
added at
a0c5a8
Submodule preprocessor
added at
667e87
Submodule static_assert
added at
ba72d3
Submodule throw_exception
added at
152b36
Submodule type_traits
added at
89f501