File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 74
74
- name : test install using examples
75
75
run : |
76
76
# Test that the in-tree install was successful by building the examples
77
- cmake -S examples -B examples/build -DLSL_INSTALL_ROOT=${PWD}/install -DCMAKE_INSTALL_PREFIX=examples/build/install -DLSL_COMFY_DEFAULTS=ON
77
+ cmake -S examples -B examples/build \
78
+ -DLSL_INSTALL_ROOT=${PWD}/install \
79
+ -DCMAKE_INSTALL_PREFIX=examples/build/install \
80
+ -DLSL_COMFY_DEFAULTS=ON \
81
+ ${{ matrix.config.cmake_extra }} \
82
+ ${{ github.event.inputs.cmakeextra }}
78
83
cmake --build examples/build --target install --config Release -j
79
84
./examples/build/install/bin/HandleMetaData
80
85
Original file line number Diff line number Diff line change @@ -93,5 +93,5 @@ if(WIN32)
93
93
install (
94
94
CODE "file(INSTALL DESTINATION \" ${CMAKE_INSTALL_PREFIX} /${CMAKE_INSTALL_BINDIR} \" TYPE SHARED_LIBRARY FILES \" $<TARGET_FILE:LSL::lsl>\" )"
95
95
COMPONENT ${PROJECT_NAME}
96
- )# install(CODE "execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different \"$<TARGET_FILE:LSL::lsl>\" \"${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_BINDIR}\")")
96
+ )
97
97
endif ()
You can’t perform that action at this time.
0 commit comments