Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
LeandroSQ committed Feb 2, 2024
1 parent 0e2e756 commit 796d85e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
target: [desktop, web]
os: [windows-latest]
target: [desktop]
# os: [ubuntu-latest, macos-latest, windows-latest]
# target: [desktop, web]

runs-on: ${{ matrix.os }}

Expand Down
7 changes: 7 additions & 0 deletions lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,13 @@ function(include_library name version source)
if(WIN32)
# On Windows, RENAME yields in a "Access is denied" error, so we use INSTALL and then REMOVE_RECURSE
file(COPY ${TEMP_PATH}/${name}-${version}/${children} DESTINATION ${INSTALL_PATH}/${name}-${version})

# Show the contents of the folder
file(GLOB children_inside ${INSTALL_PATH}/${name}-${version}/*)
message(STATUS "Children install_path inside: ${children_inside}")
file(GLOB children_inside_inside ${TEMP_PATH}/${name}-${version}/${children}/*)
message(STATUS "Children temp_path inside inside: ${children_inside_inside}")

file(REMOVE_RECURSE ${TEMP_PATH}/${name}-${version})
else()
file(RENAME ${TEMP_PATH}/${name}-${version}/${children} ${INSTALL_PATH}/${name}-${version})
Expand Down

0 comments on commit 796d85e

Please sign in to comment.