Skip to content

Commit

Permalink
this should fix build on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
satya-das committed Nov 25, 2021
1 parent 340ce12 commit 316c9aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/1-simple-class/library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ foreach(CIBOUTFILE ${CIB_OUTPUT})
endforeach()
add_custom_command(
OUTPUT ${CIB_OUTPUT}
COMMAND ${CIB} -i pub -o exp -b cib -m Demo --apidecor=EXAMPLE_API -c ${CMAKE_CURRENT_SOURCE_DIR}/abi/__zz_cib_Demo-ids.h >/dev/null
COMMAND ${CIB} -i pub -o exp -b cib -m Demo --apidecor=EXAMPLE_API -c ${CMAKE_CURRENT_SOURCE_DIR}/abi/__zz_cib_Demo-ids.h >${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/dev.null
DEPENDS cib ${LIBRARY_PUB_FILES}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
Expand Down
2 changes: 1 addition & 1 deletion demo/2-interface-class/library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ foreach(CIBOUTFILE ${CIB_OUTPUT})
endforeach()
add_custom_command(
OUTPUT ${CIB_OUTPUT}
COMMAND ${CIB} -i pub -o exp -b cib -m Demo --apidecor=EXAMPLE_API -c ${CMAKE_CURRENT_SOURCE_DIR}/abi/__zz_cib_Demo-ids.h >/dev/null
COMMAND ${CIB} -i pub -o exp -b cib -m Demo --apidecor=EXAMPLE_API -c ${CMAKE_CURRENT_SOURCE_DIR}/abi/__zz_cib_Demo-ids.h >${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/dev.null
DEPENDS cib ${LIBRARY_PUB_FILES}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
Expand Down
2 changes: 1 addition & 1 deletion demo/3-template-class/library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ foreach(CIBOUTFILE ${CIB_OUTPUT})
endforeach()
add_custom_command(
OUTPUT ${CIB_OUTPUT}
COMMAND ${CIB} -i pub -o exp -b cib -m Demo --apidecor=EXAMPLE_API -c ${CMAKE_CURRENT_SOURCE_DIR}/abi/__zz_cib_template-class-ids.h >/dev/null
COMMAND ${CIB} -i pub -o exp -b cib -m Demo --apidecor=EXAMPLE_API -c ${CMAKE_CURRENT_SOURCE_DIR}/abi/__zz_cib_template-class-ids.h >${CMAKE_LIBRARY_OUTPUT_DIRECTORY}/dev.null
DEPENDS cib ${LIBRARY_PUB_FILES}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)
Expand Down

0 comments on commit 316c9aa

Please sign in to comment.