Skip to content

Commit d4fc9fb

Browse files
committed
Using v5.0 of the COMMS library and commsdsl.
1 parent caff4da commit d4fc9fb

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

.github/workflows/actions_build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- name: Build
3636
working-directory: ${{runner.workspace}}/build
3737
shell: bash
38-
run: cmake --build . --target install
38+
run: cmake --build . --config ${{matrix.type}} --target install
3939
env:
4040
VERBOSE: 1
4141

@@ -74,7 +74,7 @@ jobs:
7474
- name: Build
7575
working-directory: ${{runner.workspace}}/build
7676
shell: bash
77-
run: cmake --build . --target install
77+
run: cmake --build . --config ${{matrix.type}} --target install
7878
env:
7979
VERBOSE: 1
8080

@@ -113,7 +113,7 @@ jobs:
113113
- name: Build
114114
working-directory: ${{runner.workspace}}/build
115115
shell: bash
116-
run: cmake --build . --target install
116+
run: cmake --build . --config ${{matrix.type}} --target install
117117
env:
118118
VERBOSE: 1
119119

@@ -154,6 +154,6 @@ jobs:
154154
- name: Build
155155
working-directory: ${{runner.workspace}}/build
156156
shell: bash
157-
run: cmake --build . --target install
157+
run: cmake --build . --config ${{matrix.type}} --target install
158158
env:
159159
VERBOSE: 1

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ option (USE_SANITIZERS "Compile with sanitizers." OFF)
1616
# COMMSDSL_CXX_COMPILER - "C++" Compiler for commsdsl project
1717

1818
if ("${COMMSDSL_TAG}" STREQUAL "")
19-
set (COMMSDSL_TAG "develop")
19+
set (COMMSDSL_TAG "v5.0")
2020
endif ()
2121

2222
if ("${CC_COMMS_TAG}" STREQUAL "")
23-
set (CC_COMMS_TAG "develop")
23+
set (CC_COMMS_TAG "v5.0")
2424
endif ()
2525

2626
if (NOT CMAKE_CXX_STANDARD)
@@ -132,6 +132,7 @@ if ("${COMMSDSL2COMMS}" STREQUAL "")
132132
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=${commsdsl2comms_install_dir}
133133
-DCOMMSDSL_NO_TESTS=ON -DCMAKE_C_COMPILER=${COMMSDSL_C_COMPILER}
134134
-DCMAKE_CXX_COMPILER=${COMMSDSL_CXX_COMPILER}
135+
-DCOMMSDSL_INSTALL_LIBRARY=OFF
135136
-DCOMMSDSL_EXTERNALS_DIR=${EXTERNALS_DIR}
136137
BINARY_DIR "${commsdsl2comms_bin_dir}"
137138
)

0 commit comments

Comments
 (0)