Skip to content

Commit 92cb8b6

Browse files
committed
Updated integration_tests username
1 parent 6abd091 commit 92cb8b6

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed
Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
1-
cmake_minimum_required( VERSION 3.10 )
1+
cmake_minimum_required(VERSION 3.10)
2+
3+
include(CPM.cmake)
24

3-
include ( CPM.cmake )
45

56
# either define GIT_BRANCH at configure time by "cmake -D GIT_BRANCH=master .."
67
# or it is set automatically in CI
7-
CPMAddPackage ( "gh:nerudaj/BitmapPlusPlus#${GIT_BRANCH}" )
8+
CPMAddPackage("gh:baderouaich/BitmapPlusPlus#${GIT_BRANCH}")
89

9-
project ( demo )
10+
project(demo)
1011

1112
set(CMAKE_CXX_STANDARD 17) # C++17 or newer is required
1213

13-
add_executable( ${PROJECT_NAME}
14-
"${CMAKE_CURRENT_SOURCE_DIR}/Main.cpp"
14+
add_executable(${PROJECT_NAME}
15+
"${CMAKE_CURRENT_SOURCE_DIR}/Main.cpp"
1516
)
1617

17-
target_link_libraries( ${PROJECT_NAME} LINK_PRIVATE bmp::BitmapPlusPlus )
18+
target_link_libraries(${PROJECT_NAME} LINK_PRIVATE bmp::BitmapPlusPlus)

integration_tests/cpm/Readme.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Integration example using CPM
22

3-
CPM stands for [CMake Package Manager](https://github.com/cpm-cmake) which is a convenience wrapper over CMake's FetchContent module. You can download the CPM.cmake from the project [releases page](https://github.com/cpm-cmake/CPM.cmake/releases/latest).
3+
CPM stands for [CMake Package Manager](https://github.com/cpm-cmake) which is a convenience wrapper over CMake's
4+
FetchContent module. You can download the CPM.cmake from the
5+
project [releases page](https://github.com/cpm-cmake/CPM.cmake/releases/latest).
46

57
With CPM enabled, you can bring this library in using the following command:
68

79
```
8-
CPMAddPackage ( "gh:nerudaj/BitmapPlusPlus#master" )
10+
CPMAddPackage ( "gh:baderouaich/BitmapPlusPlus#master" )
911
```
1012

1113
And link it to your target using:

0 commit comments

Comments
 (0)