Skip to content

Commit

Permalink
Removing DDS references.
Browse files Browse the repository at this point in the history
  • Loading branch information
mateu94 committed Oct 19, 2023
1 parent 4da70fc commit f6cfe9f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,7 @@ jobs:
cmake ..
make -j$(nproc)
working-directory: ${{ matrix.name }}

- name: Workspace cleanup
run: |
sudo rm -rf ${GITHUB_WORKSPACE}/build
7 changes: 3 additions & 4 deletions cmake/KpsrCodeGen.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,16 @@ macro(
outputDir
includePath
disableRos
disableZmq
disableDds)
disableZmq)
find_package(Python3 REQUIRED COMPONENTS Interpreter)
message(
STATUS
"Running code generator: \n${Python3_EXECUTABLE} -m kpsr_codegen -i ${inputDir} -o ${outputDir} -p ${includePath} -r ${disableRos} -z ${disableZmq} -d ${disableDds}\n"
"Running code generator: \n${Python3_EXECUTABLE} -m kpsr_codegen -i ${inputDir} -o ${outputDir} -p ${includePath} -r ${disableRos} -z ${disableZmq}\n"
)
execute_process(
COMMAND
${Python3_EXECUTABLE} -m kpsr_codegen -i ${inputDir} -o ${outputDir}
-p ${includePath} -r ${disableRos} -z ${disableZmq} -d ${disableDds}
-p ${includePath} -r ${disableRos} -z ${disableZmq}
RESULT_VARIABLE resVar
OUTPUT_VARIABLE outVar)
if(resVar)
Expand Down

0 comments on commit f6cfe9f

Please sign in to comment.