Skip to content

Commit 4081373

Browse files
committed
Update project name and dependency references
Renamed the CMake project from 'stlab-enum-ops' to 'enum-ops' and updated the referenced dependency hash for 'cpp-library'. Also updated the CI workflow to use the new project name in find_package and status messages.
1 parent 09a264e commit 4081373

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ jobs:
7171
cmake_minimum_required(VERSION 3.20)
7272
project(test-find-package CXX)
7373
74-
find_package(enum-ops REQUIRED)
74+
find_package(stlab-enum-ops REQUIRED)
7575
76-
message(STATUS "Successfully found enum-ops")
76+
message(STATUS "Successfully found stlab-enum-ops")
7777
EOF
7878
7979
# Convert paths to forward slashes for CMake (works on all platforms)

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.20)
22

33
# Project declaration - cpp_library_setup will use this name and detect version from git tags
4-
project(stlab-enum-ops)
4+
project(enum-ops)
55

66
# Setup cpp-library infrastructure
77
if(PROJECT_IS_TOP_LEVEL)
@@ -16,7 +16,7 @@ include(cmake/CPM.cmake)
1616
# NAME cpp-library
1717
# URL "${CMAKE_SOURCE_DIR}/../cpp-library"
1818
# )
19-
CPMAddPackage("gh:stlab/cpp-library#0516b9be7607caaea6737b552b1acdb9c9c620bc")
19+
CPMAddPackage("gh:stlab/cpp-library#e4a3ee5dc2da1d05d44a7b74a142c94a53de8003")
2020
# CPMAddPackage("gh:stlab/cpp-library@4.0.5")
2121

2222
include(${cpp-library_SOURCE_DIR}/cpp-library.cmake)

0 commit comments

Comments
 (0)