File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ option (USE_SANITIZERS "Compile with sanitizers." OFF)
1616# COMMSDSL_CXX_COMPILER - "C++" Compiler for commsdsl project
1717
1818if ("${COMMSDSL_TAG} " STREQUAL "" )
19- set (COMMSDSL_TAG "develop " )
19+ set (COMMSDSL_TAG "v5.0 " )
2020endif ()
2121
2222if ("${CC_COMMS_TAG} " STREQUAL "" )
23- set (CC_COMMS_TAG "develop " )
23+ set (CC_COMMS_TAG "v5.0 " )
2424endif ()
2525
2626if (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 )
You can’t perform that action at this time.
0 commit comments