Changeset 265479 in webkit for trunk/Source/JavaScriptCore/shell


Ignore:
Timestamp:
Aug 10, 2020, 5:25:43 PM (5 years ago)
Author:
Lauro Moura
Message:

[CMake][JSC] Fix testapiScripts copy location
https://bugs.webkit.org/show_bug.cgi?id=215338

file(COPY src/dir DESTINATION target/dir) copies the entire dir
inside target/dir instead of only the contents.

Reviewed by Alex Christensen.

  • shell/CMakeLists.txt:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/shell/CMakeLists.txt

    r264578 r265479  
    113113        "${JAVASCRIPTCORE_DIR}/API/tests/testapiScripts"
    114114        DESTINATION
    115         ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/testapiScripts
     115        ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}
    116116    )
    117117endif ()
Note: See TracChangeset for help on using the changeset viewer.