File tree 4 files changed +7
-7
lines changed
4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ option(lockpp_tests "Run tests" OFF)
12
12
# --------------------------------------------------------------------------------------------------------
13
13
14
14
add_library (${PROJECT_NAME} INTERFACE )
15
- add_library (soundux ::${PROJECT_NAME} ALIAS ${PROJECT_NAME} )
15
+ add_library (cr ::${PROJECT_NAME} ALIAS ${PROJECT_NAME} )
16
16
17
17
target_compile_features (${PROJECT_NAME} INTERFACE cxx_std_20)
18
18
set_target_properties (${PROJECT_NAME} PROPERTIES CXX_STANDARD 20 CXX_EXTENSIONS OFF CXX_STANDARD_REQUIRED ON )
Original file line number Diff line number Diff line change 1
1
MIT License
2
2
3
- Copyright (c) 2021 Soundux
3
+ Copyright (c) 2024 Curve
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change 14
14
``` cmake
15
15
CPMFindPackage(
16
16
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"
19
19
)
20
20
```
21
21
22
22
* Using FetchContent
23
23
``` cmake
24
24
include(FetchContent)
25
25
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 )
27
27
FetchContent_MakeAvailable(lockpp)
28
28
29
- target_link_libraries(<target> lockpp)
29
+ target_link_libraries(<target> cr:: lockpp)
30
30
```
31
31
32
32
## 📃 Usage
Original file line number Diff line number Diff line change @@ -31,4 +31,4 @@ CPMFindPackage(
31
31
OPTIONS "BOOST_UT_DISABLE_MODULE ON"
32
32
)
33
33
34
- target_link_libraries (${PROJECT_NAME} PRIVATE Boost::ut soundux ::lockpp)
34
+ target_link_libraries (${PROJECT_NAME} PRIVATE Boost::ut cr ::lockpp)
You can’t perform that action at this time.
0 commit comments