Skip to content

Commit cafa9be

Browse files
committed
increase consistency in naming everything ystdlib (rather than
ystdlib-cpp)
1 parent 36ab649 commit cafa9be

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed
File renamed without changes.

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ set(ystdlib_VERSION "0.0.1" CACHE STRING "Project version.")
55
project(ystdlib VERSION "${ystdlib_VERSION}" LANGUAGES CXX)
66

77
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/CMake")
8-
include(ystdlib-cpp-helpers)
8+
include(ystdlib-helpers)
99
include(CMakePackageConfigHelpers)
1010
include(GNUInstallDirs)
1111

1212
option(BUILD_SHARED_LIBS "Build using shared libraries." OFF)
13-
option(ystdlib_BUILD_TESTING "Build the testing tree for ystdlib-cpp." ON)
13+
option(ystdlib_BUILD_TESTING "Build the testing tree for ystdlib." ON)
1414

15-
# Require compiler versions that support the C++20 features necessary for compiling ystdlib-cpp
15+
# Require compiler versions that support the C++20 features necessary for compiling ystdlib
1616
if("AppleClang" STREQUAL "${CMAKE_CXX_COMPILER_ID}")
1717
set(ystdlib_CMAKE_CXX_COMPILER_MIN_VERSION "16")
1818
elseif("Clang" STREQUAL "${CMAKE_CXX_COMPILER_ID}")

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# ystdlib-cpp
1+
# ystdlib
22
An open-source C++ library developed and used at YScope.
33

44
# Usage
55

66
## Via CMake's find_package
77

8-
Install `ystdlib-cpp` into a directory. Then, in your project's `CMakeLists.txt`, add the following:
8+
Install `ystdlib` into a directory. Then, in your project's `CMakeLists.txt`, add the following:
99
```cmake
1010
# Set `ystdlib_BUILD_TESTING` to an accepted `FALSE` class value to skip building unit tests.
1111
# option(ystdlib_BUILD_TESTING "" OFF)

taskfiles/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ vars:
66

77
tasks:
88
all:
9-
desc: "Builds all of ystdlib-cpp."
9+
desc: "Builds all of ystdlib."
1010
deps:
1111
- "init"
1212
cmds:

taskfiles/deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ vars:
66

77
tasks:
88
install-all:
9-
desc: "Install all dependencies required by ystdlib-cpp."
9+
desc: "Install all dependencies required by ystdlib."
1010
run: "once"
1111
cmds:
1212
- "rm -rf '{{.G_DEPS_CMAKE_SETTINGS_DIR}}'"

0 commit comments

Comments
 (0)