Skip to content

Commit 711171c

Browse files
authored
Merge pull request #106 from bemanproject/remove_target_version_from_library_names
Remove target version from library names
2 parents 934997b + 6497f04 commit 711171c

15 files changed

+142
-140
lines changed

CMakeLists.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,13 @@ if(OPTIONAL_ENABLE_TESTING)
4646
add_executable(beman_optional_test)
4747
target_sources(
4848
beman_optional_test
49-
PRIVATE FILE_SET beman_optional_test_headers TYPE HEADERS BASE_DIRS src
49+
PRIVATE
50+
FILE_SET beman_optional_test_headers
51+
TYPE HEADERS
52+
BASE_DIRS tests
5053
)
5154

52-
add_subdirectory(src/beman/optional/tests)
55+
add_subdirectory(tests/beman/optional)
5356
endif()
5457

5558
add_subdirectory(include/beman/optional)

papers/P2988/mybiblio.bib

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ @misc{rawgithu58:online
5959
note = {(Accessed on 08/14/2024)}
6060
}
6161

62-
@misc{The_Beman_Project_beman_optional26,
62+
@misc{The_Beman_Project_beman_optional,
6363
author = {The Beman Project},
6464
license = {Apache-2.0},
65-
title = {{beman.optional26}},
66-
howpublished = {\url{https://github.com/bemanproject/optional26}},
65+
title = {{beman.optional}},
66+
howpublished = {\url{https://github.com/bemanproject/optional}},
6767
month = {},
6868
year = {},
6969
}

papers/P2988/optional_ref_wording.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ \chapter{Impact on the standard}
414414
The proposed changes are relative to the current working draft \cite{N4910}.
415415

416416
\chapter{Acknowledgements}
417-
Many thanks to all of the reviewers and authors of beman/optional26, \cite{The_Beman_Project_beman_optional26}, in particular A. Jiang, Darius Neațu, David Sankel, Eddie Nolan, Jan Kokemüller, Jeff Garland, and River. Tomasz Kamiński provided extensive support for the library wording of optional<T\&>.
417+
Many thanks to all of the reviewers and authors of beman.optional, \cite{The_Beman_Project_beman_optional}, in particular A. Jiang, Darius Neațu, David Sankel, Eddie Nolan, Jan Kokemüller, Jeff Garland, and River. Tomasz Kamiński provided extensive support for the library wording of optional<T\&>.
418418

419419

420420
\chapter*{Document history}

src/beman/optional/tests/test_constructor_fail.cpp

Lines changed: 0 additions & 113 deletions
This file was deleted.

src/beman/optional/tests/detail/iterator.t.cpp renamed to tests/beman/optional/detail/iterator.t.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// src/beman/optional/tests/detail/iterator.t.cpp -*-C++-*-
1+
// tests/beman/optional/detail/iterator.t.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
/**
@@ -7,7 +7,7 @@
77
#include <beman/optional/detail/iterator.hpp>
88

99
#include <gtest/gtest.h>
10-
#include <tests/test_types.hpp>
10+
#include <beman/optional/test_types.hpp>
1111

1212
#include <concepts>
1313
#include <cstdlib>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
// src/beman/optional/tests/optional.t.cpp -*-C++-*-
1+
// tests/beman/optional/optional.t.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#include <beman/optional/optional.hpp>
55

66
#include <beman/optional/optional.hpp> // test 2nd include OK
77

8-
#include <beman/optional/tests/test_types.hpp>
8+
#include <beman/optional/test_types.hpp>
99

1010
#include <functional>
1111
#include <ranges>

src/beman/optional/tests/optional_constexpr.t.cpp renamed to tests/beman/optional/optional_constexpr.t.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
// src/beman/optional/tests/optional_constexpr.t.cpp -*-C++-*-
1+
// tests/beman/optional/optional_constexpr.t.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#include <beman/optional/optional.hpp>
5-
#include <beman/optional/tests/test_types.hpp>
6-
#include <beman/optional/tests/test_utilities.hpp>
5+
#include <beman/optional/test_types.hpp>
6+
#include <beman/optional/test_utilities.hpp>
77

88
#include <functional>
99
#include <ranges>

src/beman/optional/tests/optional_monadic.t.cpp renamed to tests/beman/optional/optional_monadic.t.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// src/beman/optional/tests/optional_monadic.t.cpp -*-C++-*-
1+
// tests/beman/optional/optional_monadic.t.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
#include <beman/optional/optional.hpp>

src/beman/optional/tests/optional_range_support.t.cpp renamed to tests/beman/optional/optional_range_support.t.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// src/beman/optional/tests/optional_range_support.t.cpp -*-C++-*-
1+
// tests/beman/optional/optional_range_support.t.cpp -*-C++-*-
22
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
33

44
/**
@@ -13,7 +13,7 @@
1313
#include <gtest/gtest.h>
1414

1515
#include <beman/optional/detail/iterator.hpp>
16-
#include <beman/optional/tests/test_types.hpp>
16+
#include <beman/optional/test_types.hpp>
1717

1818
#include <algorithm>
1919
#include <concepts>

0 commit comments

Comments
 (0)