Skip to content

Commit

Permalink
Added prints to debug folder structure and location of lib files in G…
Browse files Browse the repository at this point in the history
…ithub actions VM.
  • Loading branch information
androst committed Nov 10, 2023
1 parent 1d363c3 commit 1f626b1
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions cmake/ExternalZeroMQ.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ ExternalProject_Add(zeromq
list(APPEND ROMOCC_INCLUDE_DIRS ${ROMOCC_EXTERNAL_INSTALL_DIR}/include/)

if(WIN32)
file(GLOB ITEMS_IN_FOLDER "${ROMOCC_EXTERNAL_INSTALL_DIR}/*")
foreach(ITEM ${ITEMS_IN_FOLDER})
message("${ITEM}")
endforeach()

file(GLOB ITEMS_IN_FOLDER "${ROMOCC_EXTERNAL_INSTALL_DIR}/lib/*")
foreach(ITEM ${ITEMS_IN_FOLDER})
message("${ITEM}")
endforeach()

file(GLOB ZMQ_LIBRARIES ${ROMOCC_EXTERNAL_INSTALL_DIR}/lib/libzmq-*.lib)
foreach(ZMQ_LIBRARY_PATH ${ZMQ_LIBRARIES})
get_filename_component(ZMQ_LIBRARY_BASENAME ${ZMQ_LIBRARY_PATH} NAME_WE)
Expand Down

0 comments on commit 1f626b1

Please sign in to comment.