[Webkit-unassigned] [Bug 63966] [EFL] Add url bar to EWebLauncher.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon Jul 25 01:53:33 PDT 2011


https://bugs.webkit.org/show_bug.cgi?id=63966





--- Comment #25 from Hyerim Bae <hyerim.bae at samsung.com>  2011-07-25 01:53:32 PST ---
(In reply to comment #24)
> Please take a look at CMake's explanation for the add_custom_command option [1]. If you use this first form of the command:
>   "A target created in the same directory (CMakeLists.txt file) that specifies any output of the custom command as a source file is given a rule to generate the file using the command at build time"
> If you choose the other form:
>   "The second signature adds a custom command to a target such as a library or executable. This is useful for performing an operation before or after building the target. The command becomes part of the target and will only execute when the target itself is built. If the target is already built, the command will not execute."
> Notice how Source/WebKit/efl/CMakeListsEfl.txt does
>   LIST(APPEND WebKit_SOURCES
>        ${WebKit_THEME}
>   )
> according to what is described in the documentation of the first form of the command.
> [1] http://www.cmake.org/cmake/help/cmake-2-8-docs.html#command:add_custom_command

How about this one?

ADD_CUSTOM_COMMAND(TARGET Programs/EWebLauncher
                   COMMAND ${EDJE_CC_EXECUTABLE} -v ${TOOLS_DIR}/EWebLauncher/entry.edc ${ENTRY_EDJ_PATH}
                   DEPENDS
                      ${TOOLS_DIR}/EWebLauncher/entry.edc
                   VERBATIM
)

LIST(APPEND EWebLauncher_SOURCES
     ${ENTRY_EDJ_PATH}
)

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list