Skip to content

Commit

Permalink
Using v5.0 of the COMMS library and commsdsl.
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Aug 11, 2022
1 parent caff4da commit d4fc9fb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/actions_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --target install
run: cmake --build . --config ${{matrix.type}} --target install
env:
VERBOSE: 1

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --target install
run: cmake --build . --config ${{matrix.type}} --target install
env:
VERBOSE: 1

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --target install
run: cmake --build . --config ${{matrix.type}} --target install
env:
VERBOSE: 1

Expand Down Expand Up @@ -154,6 +154,6 @@ jobs:
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --target install
run: cmake --build . --config ${{matrix.type}} --target install
env:
VERBOSE: 1
5 changes: 3 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ option (USE_SANITIZERS "Compile with sanitizers." OFF)
# COMMSDSL_CXX_COMPILER - "C++" Compiler for commsdsl project

if ("${COMMSDSL_TAG}" STREQUAL "")
set (COMMSDSL_TAG "develop")
set (COMMSDSL_TAG "v5.0")
endif ()

if ("${CC_COMMS_TAG}" STREQUAL "")
set (CC_COMMS_TAG "develop")
set (CC_COMMS_TAG "v5.0")
endif ()

if (NOT CMAKE_CXX_STANDARD)
Expand Down Expand Up @@ -132,6 +132,7 @@ if ("${COMMSDSL2COMMS}" STREQUAL "")
-DCMAKE_BUILD_TYPE=${CMAKE_BUILD_TYPE} -DCMAKE_INSTALL_PREFIX=${commsdsl2comms_install_dir}
-DCOMMSDSL_NO_TESTS=ON -DCMAKE_C_COMPILER=${COMMSDSL_C_COMPILER}
-DCMAKE_CXX_COMPILER=${COMMSDSL_CXX_COMPILER}
-DCOMMSDSL_INSTALL_LIBRARY=OFF
-DCOMMSDSL_EXTERNALS_DIR=${EXTERNALS_DIR}
BINARY_DIR "${commsdsl2comms_bin_dir}"
)
Expand Down

0 comments on commit d4fc9fb

Please sign in to comment.