-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adapt flat_map library to replace boost::flat_map
- Loading branch information
1 parent
a7a1861
commit e44a9be
Showing
4 changed files
with
43 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# SPDX-FileCopyrightText: 2022 - 2023 Peter Urban, Ghent University | ||
# | ||
# SPDX-License-Identifier: CC0-1.0 | ||
|
||
[wrap-git] | ||
url = https://github.com/Flast/flat_map.git | ||
revision = master | ||
directory = flat_map-master | ||
patch_directory = flat_map | ||
|
||
[provide] | ||
flat_map = flat_map_dep | ||
|
||
|
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,22 @@ | ||
# SPDX-FileCopyrightText: 2022 - 2023 Peter Urban, Ghent University | ||
# SPDX-FileCopyrightText: 2019 - 2022 Daniil Goncharov | ||
# | ||
# SPDX-License-Identifier: MIT | ||
|
||
project( | ||
'flat_map', ['cpp'], | ||
default_options: ['cpp_std=c++20'], | ||
version: '0.1.0', | ||
) | ||
|
||
flat_map_include = include_directories('.') | ||
|
||
flat_map_dep = declare_dependency( | ||
include_directories: flat_map_include, | ||
) | ||
|
||
# list and install headers | ||
headers = [ | ||
] | ||
|
||
#install_headers(headers, preserve_path: false) |