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


Ignore:
Timestamp:
Feb 5, 2012, 1:36:24 AM (13 years ago)
Author:
[email protected]
Message:

[CMAKE] Support javascriptcore test for EFL port.
https://bugs.webkit.org/show_bug.cgi?id=77425

Reviewed by Daniel Bates.

Efl and WinCE as well as Blackberry port are now using Cmake as its build system
and they are share the make file to create jsc excutable. In order to run
"run-javascriptcore-tests", EFL port needs to change jsc installation configuration
with executable output directory(e.g. Programs). So, this patch change jsc installation
configuration only for EFL port.

.:

  • Source/cmake/OptionsEfl.cmake: Change *jsc_efl* name with *jsc*.

Source/JavaScriptCore:

  • shell/CMakeLists.txt:
File:
1 edited

Legend:

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

    r99866 r106759  
    2121ENDIF ()
    2222
    23 IF (SHARED_CORE)
    24     SET_TARGET_PROPERTIES(${JSC_EXECUTABLE_NAME} PROPERTIES VERSION ${PROJECT_VERSION})
     23IF ("${PORT}" STREQUAL "Efl")
     24    SET_TARGET_PROPERTIES(${JSC_EXECUTABLE_NAME} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/Programs")
    2525ENDIF ()
    2626
Note: See TracChangeset for help on using the changeset viewer.