Skip to content

Commit

Permalink
print file list
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-f committed Oct 2, 2024
1 parent 4a7f94e commit 781d86d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sub_buildWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
runs-on: windows-latest
continue-on-error: ${{ inputs.allowedToFail }}
env:
CPM_SOURCE_CACHE: ~/.cache/CPM
CPM_SOURCE_CACHE: C:/ISIMPA/CPM/
CCACHE_DIR: C:/ISIMPA/cache/
CCACHE_COMPILERCHECK: "%compiler%" # default:mtime
CCACHE_MAXSIZE: 1G
Expand Down
2 changes: 2 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ include(cmake/CPM.cmake)
# include helper functions/macros
add_subdirectory(cmake/ISIMPA_Helpers)

list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cMake")

InitializeISIMPABuildOptions()
ISIMPALibpackChecks()

Expand Down
6 changes: 5 additions & 1 deletion cmake/ISIMPA_Helpers/ISIMPALibpackChecks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ macro(ISIMPALibpackChecks)
include(cMake/UseLibPack3.cmake)
else(ISIMPA_LIBPACK_CHECKFILE_CLBUNDLER)
set(ISIMPA_LIBPACK_VERSION "NOTFOUND" CACHE STRING "Displays if the libpack has been found" FORCE)
message(SEND_ERROR "Could not find LibPack in specified location:" ${ISIMPA_LIBPACK_DIR})
message(SEND_ERROR "Could not find LibPack in specified location: " ${ISIMPA_LIBPACK_DIR})
file(GLOB found_files LIST_DIRECTORIES true "${ISIMPA_LIBPACK_DIR}/*")
foreach(found_file ${found_files})
message("${found_file}")
endforeach()
endif(ISIMPA_LIBPACK_CHECKFILE_CLBUNDLER)
# -------------------------------- PyCXX --------------------------------

Expand Down

0 comments on commit 781d86d

Please sign in to comment.