Skip to content

Commit 67fc7b2

Browse files
committed
chore: remove soundux branding
1 parent 50bc274 commit 67fc7b2

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ option(lockpp_tests "Run tests" OFF)
1212
# --------------------------------------------------------------------------------------------------------
1313

1414
add_library(${PROJECT_NAME} INTERFACE)
15-
add_library(soundux::${PROJECT_NAME} ALIAS ${PROJECT_NAME})
15+
add_library(cr::${PROJECT_NAME} ALIAS ${PROJECT_NAME})
1616

1717
target_compile_features(${PROJECT_NAME} INTERFACE cxx_std_20)
1818
set_target_properties(${PROJECT_NAME} PROPERTIES CXX_STANDARD 20 CXX_EXTENSIONS OFF CXX_STANDARD_REQUIRED ON)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Soundux
3+
Copyright (c) 2024 Curve
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
```cmake
1515
CPMFindPackage(
1616
NAME lockpp
17-
VERSION 2.6
18-
GIT_REPOSITORY "https://github.com/Soundux/lockpp"
17+
VERSION 2.8
18+
GIT_REPOSITORY "https://github.com/Curve/lockpp"
1919
)
2020
```
2121

2222
* Using FetchContent
2323
```cmake
2424
include(FetchContent)
2525
26-
FetchContent_Declare(lockpp GIT_REPOSITORY "https://github.com/Soundux/lockpp" GIT_TAG v2.6)
26+
FetchContent_Declare(lockpp GIT_REPOSITORY "https://github.com/Curve/lockpp" GIT_TAG v2.8)
2727
FetchContent_MakeAvailable(lockpp)
2828
29-
target_link_libraries(<target> lockpp)
29+
target_link_libraries(<target> cr::lockpp)
3030
```
3131

3232
## 📃 Usage

tests/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ CPMFindPackage(
3131
OPTIONS "BOOST_UT_DISABLE_MODULE ON"
3232
)
3333

34-
target_link_libraries(${PROJECT_NAME} PRIVATE Boost::ut soundux::lockpp)
34+
target_link_libraries(${PROJECT_NAME} PRIVATE Boost::ut cr::lockpp)

0 commit comments

Comments
 (0)