Skip to content

Commit

Permalink
[GPUP][CMake] Install GPUProcess for the non-mac ports with ENABLE_GP…
Browse files Browse the repository at this point in the history
…U_PROCESS=ON

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

Reviewed by Adrian Perez de Castro.

Install the GPUProcess cmake target if the ENABLE_GPU_PROCESS is set to
ON for the non-Mac ports. This makes the binary available in the installation
target directory.

* Source/WebKit/CMakeLists.txt:

Canonical link: https://commits.webkit.org/271066@main
  • Loading branch information
psaavedra committed Nov 23, 2023
1 parent 1540d32 commit 5a5dc5a
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Source/WebKit/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -921,4 +921,10 @@ else ()
LIBRARY DESTINATION "${LIB_INSTALL_DIR}"
RUNTIME DESTINATION "${LIBEXEC_INSTALL_DIR}"
)
if (ENABLE_GPU_PROCESS)
install(TARGETS GPUProcess
LIBRARY DESTINATION "${LIB_INSTALL_DIR}"
RUNTIME DESTINATION "${LIBEXEC_INSTALL_DIR}"
)
endif ()
endif ()

0 comments on commit 5a5dc5a

Please sign in to comment.